Skip to content

Commit e24489b

Browse files
authored
Merge branch 'earlephilhower:master' into master
2 parents bd5492b + ecf2b2e commit e24489b

File tree

87 files changed

+5863
-1809
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+5863
-1809
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,16 +69,21 @@ Read the [Contributing Guide](https://github.com/earlephilhower/arduino-pico/blo
6969
* Melopero Cookie RP2040
7070
* Melopero Shake RP2040
7171
* METE HOCA Akana R1
72+
* Makerbase MKSTHR36
73+
* Makerbase MKSTHR42
7274
* MyMakers RP2040
7375
* Neko Systems BL2040 Mini
7476
* Newsan Archi
7577
* nullbits Bit-C PRO
78+
* Olimex Pico2XL
79+
* Olimex Pico2XXL
7680
* Olimex RP2040-Pico30
7781
* Pimoroni PGA2040
7882
* Pimoroni Pico Plus 2
7983
* Pimoroni Pico Plus 2W
8084
* Pimoroni Plasma2040
8185
* Pimoroni Plasma2350
86+
* Pimoroni Servo2040
8287
* Pimoroni Tiny2040
8388
* Pimoroni Tiny2350
8489
* Pintronix PinMax
@@ -93,11 +98,13 @@ Read the [Contributing Guide](https://github.com/earlephilhower/arduino-pico/blo
9398
* Solder Party RP2040 Stamp
9499
* Solder Party RP2350 Stamp
95100
* Solder Party RP2350 Stamp XL
101+
* SparkFun IoT RedBoard RP2350
96102
* SparkFun MicroMod RP2040
97103
* SparkFun ProMicro RP2040
98104
* SparkFun ProMicro RP2350
99105
* SparkFun Thing Plus RP2040
100106
* SparkFun Thing Plus RP2350
107+
* SparkFun XRP Controller
101108
* uPesy RP2040 DevKit
102109
* VCC-GND YD-RP2040
103110
* Viyalab Mizu RP2040

boards.txt

Lines changed: 3689 additions & 1635 deletions
Large diffs are not rendered by default.

cores/rp2040/Bootsel.h

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

2121
#pragma once
2222

23+
/**
24+
@brief Wrapper class for polling the BOOTSEL button
25+
*/
2326
class __Bootsel {
2427
public:
2528
__Bootsel() { }
29+
/**
30+
@brief Get state of the BOOTSEL pin
31+
32+
@returns True if BOOTSEL pushed
33+
*/
2634
operator bool();
2735
};
2836

37+
/**
38+
@brief BOOTSEL accessor instance
39+
*/
2940
extern __Bootsel BOOTSEL;

0 commit comments

Comments
 (0)