8000 Minor clean up includes (#1520) · esphome/arduino-pico@cc80071 · GitHub
[go: up one dir, main page]

Skip to content

Commit cc80071

Browse files
Minor clean up includes (earlephilhower#1520)
1 parent c6a0d6e commit cc80071

File tree

5 files changed

+13
-14
lines changed

5 files changed

+13
-14
lines changed

cores/rp2040/sdkoverride/pico_bootsel_via_double_reset.c

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@
66
SPDX-License-Identifier: BSD-3-Clause
77
*/
88

9-
#include "pico.h"
10-
#include "pico/time.h"
11-
#include "pico/bootrom.h"
12-
#include "pico/binary_info.h"
9+
#include <pico/time.h>
10+
#include <pico/bootrom.h>
11+
#include <pico/binary_info.h>
1312

1413
// PICO_CONFIG: PICO_BOOTSEL_VIA_DOUBLE_RESET_TIMEOUT_MS, Window of opportunity for a second press of a reset button to enter BOOTSEL mode (milliseconds), type=int, default=200, group=pico_bootsel_via_double_reset
1514
#ifndef PICO_BOOTSEL_VIA_DOUBLE_RESET_TIMEOUT_MS

libraries/AudioBufferManager/src/AudioBufferManager.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
*/
2121

2222
#include <Arduino.h>
23-
#include "hardware/dma.h"
24-
#include "hardware/irq.h"
23+
#include <hardware/dma.h>
24+
#include <hardware/irq.h>
2525
#include "AudioBufferManager.h"
2626

2727
static int __channelCount = 0; // # of channels left. When we hit 0, then remove our handler

libraries/AudioBufferManager/src/AudioBufferManager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
#pragma once
2323
#include <Arduino.h>
24-
#include "hardware/dma.h"
24+
#include <hardware/dma.h>
2525

2626
class AudioBufferManager {
2727
public:

libraries/PDM/src/rp2040/PDM.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@
55
#include "OpenPDMFilter.h"
66

77
extern "C" {
8-
#include "hardware/pio.h"
9-
#include "hardware/dma.h"
10-
#include "hardware/clocks.h"
8+
#include <hardware/pio.h>
9+
#include <hardware/dma.h>
10+
#include <hardware/clocks.h>
1111
}
12-
#include "hardware/sync.h"
12+
#include <hardware/sync.h>
1313
#include "pdm.pio.h"
1414
static PIOProgram _pdmPgm(&pdm_pio_program);
1515

libraries/lwIP_CYW43/src/utility/CYW43shim.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020

2121
#include "CYW43shim.h"
2222
extern "C" {
23-
#include "cyw43.h"
24-
#include "cyw43_stats.h"
23+
#include <cyw43.h>
24+
#include <cyw43_stats.h>
2525
}
26-
#include "pico/cyw43_arch.h"
26+
#include <pico/cyw43_arch.h>
2727
#include <Arduino.h>
2828

2929
// From cyw43_ctrl.c

0 commit comments

Comments
 (0)
0