1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards
bors[bot] 8707548104
Merge #19804 #19807 #19809
19804: cpu/nrf{53,9160}: add periph_rtt support r=benpicco a=dylad

### Contribution description

This PR enables support for `periph_rtt` on both nRF9160 and nRF53.
This PR is based on #19803 

I was only able to test on nrf5340dk-app as I don't have access to any nrf9160-based board.

Here is `test/periph/rtt` output for reference on `nrf5340dk-app`:

### Testing procedure
flash `tests/periph/rtt` on `nrf9160dk` or `nrf5340dk-app`  and check the results.
```
s
2023-07-06 16:11:16,471 # START
2023-07-06 16:11:16,479 # main(): This is RIOT! (Version: 2023.07-devel-765-g02c65-cpu/nrf53/add_rtt_support)
2023-07-06 16:11:16,480 # 
2023-07-06 16:11:16,482 # RIOT RTT low-level driver test
2023-07-06 16:11:16,483 # RTT configuration:
2023-07-06 16:11:16,485 # RTT_MAX_VALUE: 0x00ffffff
2023-07-06 16:11:16,487 # RTT_FREQUENCY: 1024
2023-07-06 16:11:16,487 # 
2023-07-06 16:11:16,494 # Testing the tick conversion (with rounding if RTT_FREQUENCY is not power of 2)
2023-07-06 16:11:16,498 # Trying to convert 1 to seconds and back
2023-07-06 16:11:16,501 # Trying to convert 256 to seconds and back
2023-07-06 16:11:16,505 # Trying to convert 65536 to seconds and back
2023-07-06 16:11:16,509 # Trying to convert 16777216 to seconds and back
2023-07-06 16:11:16,514 # Trying to convert 2147483648 to seconds and back
2023-07-06 16:11:16,514 # All ok
2023-07-06 16:11:16,514 # 
2023-07-06 16:11:16,517 # Initializing the RTT driver
2023-07-06 16:11:16,835 # This test will now display 'Hello' every 5 seconds
2023-07-06 16:11:16,835 # 
2023-07-06 16:11:16,836 # RTT now: 4
2023-07-06 16:11:16,840 # Setting initial alarm to now + 5 s (5124)
2023-07-06 16:11:16,841 # rtt_get_alarm() PASSED
2023-07-06 16:11:16,846 # Done setting up the RTT, wait for many Hellos
2023-07-06 16:11:16,852 # { "threads": [{ "name": "main", "stack_size": 1536, "stack_used": 404 }]}
2023-07-06 16:11:21,833 # Hello
2023-07-06 16:11:26,831 # Hello
2023-07-06 16:11:31,830 # Hello
2023-07-06 16:11:36,828 # Hello
2023-07-06 16:11:41,826 # Hello
2023-07-06 16:11:46,825 # Hello
2023-07-06 16:11:51,823 # Hello
2023-07-06 16:11:56,821 # Hello
2023-07-06 16:12:01,821 # Hello
2023-07-06 16:12:06,819 # Hello
2023-07-06 16:12:11,817 # Hello
2023-07-06 16:12:16,815 # Hello
2023-07-06 16:12:21,813 # Hello
2023-07-06 16:12:26,811 # Hello
```
### Issues/PRs references
based on #19803 

19807: boards/esp32s2-lilygo-ttgo-t8: fix display configuration r=benpicco a=gschorcht

### Contribution description

This PR fixes the display configuration for the ESP32-S2 LilyGO TTGO T8 (also known as LilyGo T-Display S2) which uses a ST7789 as display driver IC that is compatible with the ST7735.

For that purpose the ST7735 driver is extended by a pseudomodule definition `st7789` for the ST7789 which is enabled by the board and enables automatically the `st7789` (f57b6b70b8). Vise versa, board's `Makefile.dep` enables automatically the `st7789` pseudomodule if the `st7735` is used. The pseudomodule `st7789` is just used to increase the upper limit for supported lines.

### Testing procedure

```
BOARD=esp32s2-lilygo-ttgo-t8 make -C tests/drivers/st7735/ flash
```
should work:

![IMG_20230707_112616](https://github.com/RIOT-OS/RIOT/assets/31932013/4393866b-27d9-4a6a-96fc-7c460be35cde)

### Issues/PRs references

19809: cpu/nrf53: add usbdev support r=benpicco a=dylad

### Contribution description
This PR enables `periph_usbdev` support on nRF5340DK-app board. Since the IP is the same as nRF52, the driver and its related data and structs were moved from `cpu/nrf52` to `cpu/nrf5x_common`


### Testing procedure
Test any USBUS related test application on `nrf5340dk-app`

`CFLAGS='-DSECTOR_COUNT=64' USEMODULE='mtd_emulated' make BOARD=nrf5340dk-app -C tests/sys/usbus_msc flash`

dmesg output:
```
[ 7466.262760] usb 1-2.1: new full-speed USB device number 16 using xhci_hcd
[ 7466.483916] usb 1-2.1: New USB device found, idVendor=1209, idProduct=7d01, bcdDevice= 1.00
[ 7466.483925] usb 1-2.1: New USB device strings: Mfr=3, Product=2, SerialNumber=4
[ 7466.483928] usb 1-2.1: Product: nrf5340dk-app
[ 7466.483931] usb 1-2.1: Manufacturer: RIOT-os.org
[ 7466.483933] usb 1-2.1: SerialNumber: AD0FD4AE806080C2
[ 7466.487010] usb-storage 1-2.1:1.0: USB Mass Storage device detected
[ 7466.487348] scsi host2: usb-storage 1-2.1:1.0
[ 7467.516789] scsi 2:0:0:0: Direct-Access     RIOT-OS  RIOT_MSC_DISK     1.0 PQ: 0 ANSI: 1
[ 7467.517152] sd 2:0:0:0: Attached scsi generic sg3 type 0
[ 7467.517501] sd 2:0:0:0: [sdd] 64 512-byte logical blocks: (32.8 kB/32.0 KiB)
[ 7467.517732] sd 2:0:0:0: [sdd] Write Protect is off
[ 7467.517733] sd 2:0:0:0: [sdd] Mode Sense: 03 00 00 00
[ 7467.517906] sd 2:0:0:0: [sdd] No Caching mode page found
[ 7467.517910] sd 2:0:0:0: [sdd] Assuming drive cache: write through
[ 7467.532159] sd 2:0:0:0: [sdd] Attached SCSI removable disk
```

I also tested `tests/sys/usbus_cdc_ecm` and `tests/sys/usbus/usbus_hid` succesfully.


### Issues/PRs references



Co-authored-by: Dylan Laduranty <dylan.laduranty@mesotic.com>
Co-authored-by: Gunar Schorcht <gunar@schorcht.net>
2023-07-07 14:30:15 +00:00
..
acd52832 boards: drop board_init() from board.h 2022-02-25 15:08:58 +01:00
adafruit-clue boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
adafruit-grand-central-m4-express boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
adafruit-itsybitsy-m4 boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
adafruit-itsybitsy-nrf52 boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
adafruit-pybadge boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
airfy-beacon doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
alientek-pandora boards/common/stm32: clean up LED definitions 2022-08-08 23:35:06 +02:00
arduino-due boards/arduino-due: Add Kconfig symbols 2020-07-16 15:35:25 +02:00
arduino-duemilanove boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
arduino-leonardo boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
arduino-mega2560 boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
arduino-mkr1000 boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
arduino-mkrfox1200 boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
arduino-mkrwan1300 boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
arduino-mkrzero boards/samd21-based: model Kconfig 2021-12-15 10:31:18 +01:00
arduino-nano boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
arduino-nano-33-ble boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
arduino-nano-33-iot boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
arduino-uno boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
arduino-zero boards/arduino-zero: move tinusb_device feature 2022-12-07 13:56:24 +01:00
atmega256rfr2-xpro doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
atmega328p doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
atmega328p-xplained-mini doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
atmega1284p doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
atxmega-a1-xplained boards: model avr-based boards Kconfig 2021-11-22 12:25:30 +01:00
atxmega-a1u-xpro cpu/atxmega: fix building with avr-libc 2.1.0 2022-09-22 13:56:53 +02:00
atxmega-a3bu-xplained boards: model avr-based boards Kconfig 2021-11-22 12:25:30 +01:00
avr-rss2 doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
avsextrem boards: select 868 MHz band for CC110x 2021-09-17 12:58:10 +02:00
b-l072z-lrwan1 boards/common/stm32: clean up LED definitions 2022-08-08 23:35:06 +02:00
b-l475e-iot01a boards: enable feature tinyusb_device for STM32 boards 2022-09-30 19:05:51 +02:00
b-u585i-iot02a boards/b-u585i-iot002a: add USB OTG FS support 2023-07-05 09:44:35 +02:00
bastwan boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
blackpill-stm32f103c8 boards/{bluepill*,blackpill*}: rename and improve doc 2023-01-02 16:23:10 +01:00
blackpill-stm32f103cb boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
bluepill-stm32f030c8 boards/common/stm32: clean up LED definitions 2022-08-08 23:35:06 +02:00
bluepill-stm32f103c8 boards/{bluepill*,blackpill*}: rename and improve doc 2023-01-02 16:23:10 +01:00
bluepill-stm32f103cb boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
calliope-mini boards: drop manual button auto-init 2022-02-26 22:51:50 +01:00
cc1312-launchpad boards/cc1312: remove broken HTML links and headings in doc 2022-10-28 08:57:17 -04:00
cc1350-launchpad boards/cc1350-lauchpad: fix conflict with PR #18808 2022-10-28 09:27:55 -04:00
cc1352-launchpad boards/cc1352: remove broken HTML links and headings from doc 2022-10-28 08:57:17 -04:00
cc1352p-launchpad boards/cc1350-lauchpad: fix conflict with PR #18808 2022-10-28 09:27:55 -04:00
cc2538dk boards select cc2538 Kconfig feature 2022-07-28 09:32:25 +02:00
cc2650-launchpad boards/cc{13xx,26xx}: clean up OpenOCD config 2023-01-10 21:58:19 +01:00
cc2650stk boards/cc{13xx,26xx}: clean up OpenOCD config 2023-01-10 21:58:19 +01:00
common Merge #19789 #19796 #19802 #19803 2023-07-06 14:57:33 +00:00
derfmega128 doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
derfmega256 doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
dwm1001 boards/dwm1001: use lis2dh12_i2c instead of lis2dh12_spi 2022-11-09 09:36:09 +00:00
e104-bt5010a-tb cpu/nrf52/Makefile.dep: move radio dependencies from boards/common 2021-09-29 10:16:31 +02:00
e104-bt5011a-tb boards/e104-bt50xxa-tb: move default module to Makefile.default 2021-01-25 09:17:00 +01:00
e180-zg120b-tb tree wide: fix typos in comments found by codespell 2023-05-02 09:52:06 +02:00
ek-lm4f120xl doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
esp32-ethernet-kit-v1_0 doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
esp32-ethernet-kit-v1_1 boards/esp32: replace HAS_PERIPH_ETH by HAS_ESP_ETH in Kconfig 2022-08-03 09:01:05 +02:00
esp32-ethernet-kit-v1_2 boards/esp32: replace HAS_PERIPH_ETH by HAS_ESP_ETH in Kconfig 2022-08-03 09:01:05 +02:00
esp32-heltec-lora32-v2 boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
esp32-mh-et-live-minikit boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
esp32-olimex-evb boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
esp32-ttgo-t-beam boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
esp32-wemos-lolin-d32-pro boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
esp32-wroom-32 boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
esp32-wrover-kit boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
esp32c3-devkit boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
esp32c3-wemos-mini boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
esp32s2-devkit boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
esp32s2-lilygo-ttgo-t8 boards/esp32s2-lilygo-ttgo-t8: fix display config 2023-07-07 08:23:41 +02:00
esp32s2-wemos-mini boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
esp32s3-devkit boards/esp32s3-devkit: fix documentation 2023-07-07 11:11:41 +02:00
esp32s3-pros3 boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
esp8266-esp-12x boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
esp8266-olimex-mod boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
esp8266-sparkfun-thing boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
f4vi1 boards: Remove PLL overrides in kconfig 2022-11-03 13:38:09 +01:00
feather-m0 boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
feather-m0-lora boards/feather-m0*: base board definition in Kconfig 2021-12-24 12:59:30 +01:00
feather-m0-wifi boards/feather-m0*: base board definition in Kconfig 2021-12-24 12:59:30 +01:00
feather-nrf52840 boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
firefly boards/remote-*: drop custom led_init() 2023-03-06 11:04:48 +01:00
frdm-k22f boards/frdm-k22f: fixes long lines in periph_conf.h 2023-06-29 15:02:02 +02:00
frdm-k64f boards/frdm-k64f: fixes long lines and comma separated by whitespaces warnings 2023-06-29 15:33:18 +02:00
frdm-kl43z boards: drop board_init() from board.h 2022-02-25 15:08:58 +01:00
frdm-kw41z boards/kinetis: replace GPIO_UNDEF with SPI_CS_UNDEF 2022-01-06 12:34:09 +01:00
hamilton boards/hamilton: Add minimal doc 2023-01-06 22:56:28 +01:00
hifive1 boards: drop board_init() from board.h 2022-02-25 15:08:58 +01:00
hifive1b boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
hip-badge boards/hip-badge: fix doc rendering 2023-01-09 20:07:05 +01:00
i-nucleo-lrwan1 boards: drop board_init() from board.h 2022-02-25 15:08:58 +01:00
ikea-tradfri tree wide: fix typos in comments found by codespell 2023-05-02 09:52:06 +02:00
im880b boards: Remove PLL overrides in kconfig 2022-11-03 13:38:09 +01:00
iotlab-a8-m3 boards/stm32: replace GPIO_UNDEF with SPI_CS_UNDEF 2022-01-06 12:34:09 +01:00
iotlab-m3 Documentation: Renaming OS X to macOS 2022-06-23 17:25:48 +02:00
limifrog-v1 boards/common/stm32: clean up LED definitions 2022-08-08 23:35:06 +02:00
lobaro-lorabox boards/common/stm32: clean up LED definitions 2022-08-08 23:35:06 +02:00
lora-e5-dev boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
lsn50 boards: drop board_init() from board.h 2022-02-25 15:08:58 +01:00
maple-mini doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
mbed_lpc1768 boards: drop board_init() from board.h 2022-02-25 15:08:58 +01:00
mcb2388 boards: add some missing whitespaces for static tests 2022-09-14 15:11:14 +02:00
mega-xplained doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
microbit board/microbit: increase testtimeout for emulated testing 2022-04-12 11:36:57 +02:00
microbit-v2 boards: Provide debug adapter ID from serial where possible 2023-02-24 16:50:59 +01:00
microduino-corerf boards: drop board_init() from board.h 2022-02-25 15:08:58 +01:00
msb-430 cpu/msp430: make use of vendor header files 2023-07-04 20:21:05 +02:00
msb-430h cpu/msp430: make use of vendor header files 2023-07-04 20:21:05 +02:00
msba2 boards/msba2: provide TTY_BOARD_FILTER 2022-06-07 09:18:58 +02:00
msbiot treewide: replace occurrences of tests/driver_ with new path 2023-05-06 15:38:21 +02:00
mulle doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
native boards/native: default to fs_native 2023-04-26 00:53:14 +02:00
nrf51dk boards: fix periph_uart_hw_fc dependency resolution 2023-06-17 15:13:19 +02:00
nrf51dongle boards: fix periph_uart_hw_fc dependency resolution 2023-06-17 15:13:19 +02:00
nrf52dk boards/nrf52dk: fix doc 2022-09-26 14:10:57 +02:00
nrf5340dk-app Merge #19804 #19807 #19809 2023-07-07 14:30:15 +00:00
nrf6310 boards: drop board_init() from board.h 2022-02-25 15:08:58 +01:00
nrf9160dk boards/nrf9160dk: enable periph_rtt and add its configuration 2023-07-07 13:04:24 +02:00
nrf52832-mdk boards: add some missing whitespaces for static tests 2022-09-14 15:11:14 +02:00
nrf52840-mdk boards: enable feature tinyusb_device for nRF52 boards 2022-10-21 18:09:38 +02:00
nrf52840-mdk-dongle boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
nrf52840dk boards/nrf52840dk: add Arduino I/O mapping 2023-07-06 09:00:54 +02:00
nrf52840dongle boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
nucleo-f030r8 boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-f031k6 boards/nucleo32: fix static test issues 2022-06-17 03:41:22 -04:00
nucleo-f042k6 boards/nucleo32: fix static test issues 2022-06-17 03:41:22 -04:00
nucleo-f070rb boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-f072rb boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-f091rc boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-f103rb boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-f207zg boards/nucleo-f207zg: add ADC support 2022-11-04 18:02:28 -04:00
nucleo-f302r8 boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-f303k8 boards/nucleo: change all memory size to KiB 2022-06-16 12:46:42 -04:00
nucleo-f303re boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-f303ze boards/nucleo-f303ze: enable tinyUSB support 2022-10-23 22:33:51 +02:00
nucleo-f334r8 boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-f401re boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-f410rb boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-f411re boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-f412zg boards: enable feature tinyusb_device for STM32 boards 2022-09-30 19:05:51 +02:00
nucleo-f413zh boards: enable feature tinyusb_device for STM32 boards 2022-09-30 19:05:51 +02:00
nucleo-f429zi boards/nucleo-f429zi: Use common TIM5 + TIM2 timer conf 2023-04-17 12:24:48 +02:00
nucleo-f439zi boards: enable feature tinyusb_device for STM32 boards 2022-09-30 19:05:51 +02:00
nucleo-f446re boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-f446ze boards: enable feature tinyusb_device for STM32 boards 2022-09-30 19:05:51 +02:00
nucleo-f722ze boards: enable feature tinyusb_device for STM32 boards 2022-09-30 19:05:51 +02:00
nucleo-f746zg boards: enable feature tinyusb_device for STM32 boards 2022-09-30 19:05:51 +02:00
nucleo-f767zi boards: enable feature tinyusb_device for STM32 boards 2022-09-30 19:05:51 +02:00
nucleo-g070rb boards/nucleo-g070rb: improve ADC doc 2022-11-28 05:07:25 -05:00
nucleo-g071rb boards/nucleo-g071rb: improve ADC doc 2022-11-28 05:07:25 -05:00
nucleo-g431rb boards/g431rb: add short board info and flashing commands 2022-08-04 13:49:35 -04:00
nucleo-g474re boards/nucleo-g474re: add short board info and flashing commands 2022-08-05 17:01:50 -04:00
nucleo-l4r5zi boards/nucleo-l4r5zi: add doxygen info about Vbat divider 2022-11-26 17:30:47 -05:00
nucleo-l011k4 boards/nucleo: change all memory size to KiB 2022-06-16 12:46:42 -04:00
nucleo-l031k6 boards/nucleo: change all memory size to KiB 2022-06-16 12:46:42 -04:00
nucleo-l053r8 boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-l073rz boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-l152re boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-l412kb boards/nucleo-l412kb: add board short description and flashing command 2022-06-17 03:21:40 -04:00
nucleo-l432kc boards/nucleo-l432kc: provide three periph_timer instances 2023-05-30 13:05:38 +02:00
nucleo-l433rc boards/nucleo-l433rc: add short board info and flashing commands 2022-08-08 05:59:24 -04:00
nucleo-l452re boards/nucleo-l452re: add cpy2remed flashing commands 2022-08-08 11:51:46 -04:00
nucleo-l476rg boards/nucleo64: Add pinout diagrams from UM1724 2023-03-17 15:16:31 +01:00
nucleo-l496zg boards/nucleo-l496zg: doc improvement 2022-12-10 11:41:45 -05:00
nucleo-l552ze-q boards/nucleo144: fix all memory sizes to KiB and MiB 2022-07-04 14:03:44 -04:00
nucleo-wl55jc boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
nz32-sc151 boards: make DFU_USB_ID and DFU_USE_DFUSE overridable 2022-11-30 19:28:14 +01:00
olimex-msp430-h1611 cpu/msp430: make use of vendor header files 2023-07-04 20:21:05 +02:00
olimex-msp430-h2618 cpu/msp430: make use of vendor header files 2023-07-04 20:21:05 +02:00
olimexino-stm32 boards/common/stm32: clean up LED definitions 2022-08-08 23:35:06 +02:00
omote boards select cc2538 Kconfig feature 2022-07-28 09:32:25 +02:00
opencm904 doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
openlabs-kw41z-mini doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
openlabs-kw41z-mini-256kib drivers/kw41zrf: boards/openlabs-kw41z-mini: cleanup Kconfig 2023-06-01 12:19:44 +02:00
openmote-b doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
openmote-cc2538 boards select cc2538 Kconfig feature 2022-07-28 09:32:25 +02:00
p-l496g-cell02 boards/p-l496g-cell02: fix UART_DEV(2) configuration 2023-05-10 12:21:11 +02:00
p-nucleo-wb55 boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
particle-argon boards: fix periph_uart_hw_fc dependency resolution 2023-06-17 15:13:19 +02:00
particle-boron boards: fix periph_uart_hw_fc dependency resolution 2023-06-17 15:13:19 +02:00
particle-xenon boards: add some missing whitespaces for static tests 2022-09-14 15:11:14 +02:00
pba-d-01-kw2x boards: drop unused BTN0_PORT define 2022-09-20 18:08:55 +02:00
phynode-kw41z doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
pinetime doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
pyboard boards: make DFU_USB_ID and DFU_USE_DFUSE overridable 2022-11-30 19:28:14 +01:00
qn9080dk Merge #19730 #19731 2023-06-13 10:59:31 +00:00
reel boards: enable feature tinyusb_device for nRF52 boards 2022-10-21 18:09:38 +02:00
remote-pa boards/remote-*: drop custom led_init() 2023-03-06 11:04:48 +01:00
remote-reva boards/remote-*: drop custom led_init() 2023-03-06 11:04:48 +01:00
remote-revb boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
rpi-pico boards/rpi-pico: update openocd.cfg file 2023-06-07 18:58:30 +02:00
rpi-pico-w boards/rpi-pico-w: fix too large board image 2023-01-17 04:13:32 -05:00
ruuvitag boards/{thingy52,ruuvitag}: allow OpenOCD as programmer 2022-06-21 15:04:13 +02:00
samd10-xmini boards: convert sam0 boards to new adc_conf_chan_t 2022-09-27 22:43:31 +02:00
samd20-xpro boards: convert sam0 boards to new adc_conf_chan_t 2022-09-27 22:43:31 +02:00
samd21-xpro boards/samd21-xpro: fix style of PWM config 2022-11-23 14:06:30 +01:00
same54-xpro Merge #18682 2023-02-25 18:59:07 +00:00
saml10-xpro boards/saml10-xpro: Add Kconfig symbols 2020-07-16 18:09:59 +02:00
saml11-xpro treewide: replace occurrences of tests/periph_ with new path 2023-05-06 15:33:03 +02:00
saml21-xpro boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
samr21-xpro boards/samr21-xpro: fix style of PWM config 2022-11-23 13:53:14 +01:00
samr30-xpro boards/sam0-based: enable tinyusb_device support in Kconfig 2022-10-05 20:14:02 +02:00
samr34-xpro boards/sam0-based: enable tinyusb_device support in Kconfig 2022-10-05 20:14:02 +02:00
seeedstudio-gd32 boards/seeedsudio-gd32: documentation fix 2023-07-03 11:48:39 +02:00
seeeduino_arch-pro boards: drop board_init() from board.h 2022-02-25 15:08:58 +01:00
seeeduino_xiao boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
sensebox_samd21 boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
serpente boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
sipeed-longan-nano boards/sipeed-longan-nano: fix TFT display config and documentation 2023-07-04 12:12:50 +02:00
slstk3400a tree wide: fix typos in comments found by codespell 2023-05-02 09:52:06 +02:00
slstk3401a tree wide: fix typos in comments found by codespell 2023-05-02 09:52:06 +02:00
slstk3402a tree wide: fix typos in comments found by codespell 2023-05-02 09:52:06 +02:00
sltb001a tree wide: fix typos in comments found by codespell 2023-05-02 09:52:06 +02:00
sltb009a board/sltb009a: enable feature periph_usbdev 2022-12-07 16:34:34 +01:00
slwstk6000b-slwrb4150a boards/slwstk600b-based/kconfig: select common module 2021-12-08 21:22:50 +01:00
slwstk6000b-slwrb4162a boards/slwstk600b-based/kconfig: select common module 2021-12-08 21:22:50 +01:00
slwstk6220a tree wide: fix typos in comments found by codespell 2023-05-02 09:52:06 +02:00
sodaq-autonomo boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
sodaq-explorer boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
sodaq-one boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
sodaq-sara-aff boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
sodaq-sara-sff boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
spark-core boards: make DFU_USB_ID and DFU_USE_DFUSE overridable 2022-11-30 19:28:14 +01:00
stk3200 tree wide: fix typos in comments found by codespell 2023-05-02 09:52:06 +02:00
stk3600 tree wide: fix typos in comments found by codespell 2023-05-02 09:52:06 +02:00
stk3700 tree wide: fix typos in comments found by codespell 2023-05-02 09:52:06 +02:00
stm32f0discovery doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
stm32f3discovery doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
stm32f4discovery boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
stm32f030f4-demo boards/common/stm32: clean up LED definitions 2022-08-08 23:35:06 +02:00
stm32f429i-disc1 Revert "boards/stm32f429-disc*: do not use periph_usbdev_hs" 2023-03-31 16:43:51 +02:00
stm32f429i-disco boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
stm32f469i-disco boards: Remove PLL overrides in kconfig 2022-11-03 13:38:09 +01:00
stm32f723e-disco boards: fix periph_uart_hw_fc dependency resolution 2023-06-17 15:13:19 +02:00
stm32f746g-disco boards/stm32f746g-disco: add feature periph_usbdev_hs 2023-03-07 11:27:30 +01:00
stm32f769i-disco boards: Remove PLL overrides in kconfig 2022-11-03 13:38:09 +01:00
stm32f7508-dk boards/stm32f705-dk: add feature periph_usbdev_hs 2023-03-07 11:27:48 +01:00
stm32g0316-disco boards/common/stm32: clean up LED definitions 2022-08-08 23:35:06 +02:00
stm32l476g-disco boards: enable feature tinyusb_device for STM32 boards 2022-09-30 19:05:51 +02:00
stm32l496g-disco boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
stm32l0538-disco boards: drop unused BTN0_PORT define 2022-09-20 18:08:55 +02:00
stm32mp157c-dk2 doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
teensy31 boards: drop board_init() from board.h 2022-02-25 15:08:58 +01:00
telosb cpu/msp430: make use of vendor header files 2023-07-04 20:21:05 +02:00
thingy52 boards/{thingy52,ruuvitag}: allow OpenOCD as programmer 2022-06-21 15:04:13 +02:00
ublox-c030-u201 boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
udoo boards/udoo: Add Kconfig symbols 2020-07-16 15:35:25 +02:00
usb-kw41z boards/kinetis: replace GPIO_UNDEF with SPI_CS_UNDEF 2022-01-06 12:34:09 +01:00
waspmote-pro boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
waveshare-nrf52840-eval-kit boards,sys/arduino: major clean up 2023-06-26 17:24:07 +02:00
weact-f401cc boards/stm32f4x1xx: Improve documentation 2023-01-06 23:10:26 +01:00
weact-f401ce boards/stm32f4x1xx: Improve documentation 2023-01-06 23:10:26 +01:00
weact-f411ce boards/stm32f4x1xx: Improve documentation 2023-01-06 23:10:26 +01:00
wemos-zero boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
xg23-pk6068a boards/xg23-pk6068a: add ADC lines 2022-11-22 14:44:56 +01:00
yarm boards/*: Model usb and stdio in Kconfig 2023-05-31 13:04:42 +02:00
yunjia-nrf51822 doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
z1 cpu/msp430: make use of vendor header files 2023-07-04 20:21:05 +02:00
zigduino doc: fix unbalaced grouping 2022-09-14 15:05:25 +02:00
doc.txt doc: add board selection guide 2023-06-29 22:36:35 +02:00
Kconfig sys/board_common: add generic board_init() function 2022-02-22 10:04:44 +01:00
README.md

Platform configurations for RIOT-OS

This directory contains existing configuration and initialization files for platforms supported by RIOT-OS.