text
stringlengths
9
39.2M
dir
stringlengths
25
226
lang
stringclasses
163 values
created_date
timestamp[s]
updated_date
timestamp[s]
repo_name
stringclasses
751 values
repo_full_name
stringclasses
752 values
star
int64
1.01k
183k
len_tokens
int64
1
18.5M
```yaml description: | The Icarus IoT Board v2 provides the user with an option to disable the charger or to leave it on auto. The option can be changed by changing the `charger` property in the associated dt node to `auto` or `disabled`. compatible: "actinius-charger-enable" include: base.yaml properties: ...
/content/code_sandbox/boards/actinius/icarus/dts/bindings/actinius-charger-enable.yaml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
142
```yaml identifier: actinius_icarus_som_dk/nrf9160 name: Actinius Icarus SoM DK type: mcu arch: arm toolchain: - gnuarmemb - xtools - zephyr ram: 88 flash: 256 supported: - gpio - i2c - pwm - spi - watchdog - counter - arduino_gpio - arduino_i2c - arduino_serial - arduino_spi vendor: actinius ...
/content/code_sandbox/boards/actinius/icarus_som_dk/actinius_icarus_som_dk_nrf9160.yaml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
129
```cmake board_runner_args(jlink "--device=nRF9160_xxAA" "--speed=4000") include(${ZEPHYR_BASE}/boards/common/nrfjprog.board.cmake) include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake) ```
/content/code_sandbox/boards/actinius/icarus_som_dk/board.cmake
cmake
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
56
```unknown /* * */ /* * Default Flash planning for actinius_icarus_som_dk. * * Zephyr build for nRF9160 with ARM TrustZone-M support, * implies building Secure and Non-Secure Zephyr images. * * Secure image will be placed, by default, in flash0 * (or in slot0, if MCUboot is present). * Secure image will use ...
/content/code_sandbox/boards/actinius/icarus_som_dk/actinius_icarus_som_dk_partition_conf.dtsi
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
381
```unknown /* * */ /dts-v1/; #include <nordic/nrf9160ns_sica.dtsi> #include "actinius_icarus_som_dk_common.dtsi" / { chosen { zephyr,flash = &flash0; zephyr,sram = &sram0_ns; zephyr,code-partition = &slot0_ns_partition; }; }; ```
/content/code_sandbox/boards/actinius/icarus_som_dk/actinius_icarus_som_dk_nrf9160_ns.dts
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
88
```cmake # Suppress "unique_unit_address_if_enabled" to handle the following overlaps: # - flash-controller@39000 & kmu@39000 # - power@5000 & clock@5000 list(APPEND EXTRA_DTC_FLAGS "-Wno-unique_unit_address_if_enabled") ```
/content/code_sandbox/boards/actinius/icarus_som_dk/pre_dt_board.cmake
cmake
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
60
```unknown # Enable MPU CONFIG_ARM_MPU=y # Enable hardware stack protection CONFIG_HW_STACK_PROTECTION=y # Enable TrustZone-M CONFIG_ARM_TRUSTZONE_M=y # Enable GPIO CONFIG_GPIO=y # Enable UART driver CONFIG_SERIAL=y # Enable console CONFIG_CONSOLE=y CONFIG_UART_CONSOLE=y # This board implies building Non-Secure ...
/content/code_sandbox/boards/actinius/icarus_som_dk/actinius_icarus_som_dk_nrf9160_ns_defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
90
```unknown /* */ &pinctrl { uart0_default: uart0_default { group1 { psels = <NRF_PSEL(UART_TX, 0, 9)>, <NRF_PSEL(UART_RX, 0, 6)>; }; }; uart0_sleep: uart0_sleep { group1 { psels = <NRF_PSEL(UART_TX, 0, 9)>, <NRF_PSEL(UART_RX, 0, 6)>; low-power-enable; }; }; i2c2_default: i2c2_default {...
/content/code_sandbox/boards/actinius/icarus_som_dk/actinius_icarus_som_dk_common-pinctrl.dtsi
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
667
```unknown /* * */ /dts-v1/; #include <nordic/nrf9160_sica.dtsi> #include "actinius_icarus_som_dk_common.dtsi" / { chosen { zephyr,sram = &sram0_s; zephyr,flash = &flash0; zephyr,code-partition = &slot0_partition; zephyr,sram-secure-partition = &sram0_s; zephyr,sram-non-secure-partition = &sram0_ns; }; ...
/content/code_sandbox/boards/actinius/icarus_som_dk/actinius_icarus_som_dk_nrf9160.dts
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
121
```unknown /* * */ / { arduino_header: arduino_connector { compatible = "arduino-header-r3"; #gpio-cells = <2>; gpio-map-mask = <0xffffffff 0xffffffc0>; gpio-map-pass-thru = <0 0x3f>; gpio-map = <0 0 &gpio0 15 0>, /* A0 */ <1 0 &gpio0 16 0>, /* A1 */ <2 0 &gpio0 17 0>, /* A2 */ <3 0 &gpi...
/content/code_sandbox/boards/actinius/icarus_som_dk/arduino_connector.dtsi
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
665
```yaml identifier: actinius_icarus_som_dk/nrf9160/ns name: Actinius Icarus SoM DK Non-Secure type: mcu arch: arm toolchain: - gnuarmemb - xtools - zephyr ram: 128 flash: 192 supported: - gpio - i2c - pwm - spi - watchdog - counter - arduino_gpio - arduino_i2c - arduino_serial - arduino_spi ve...
/content/code_sandbox/boards/actinius/icarus_som_dk/actinius_icarus_som_dk_nrf9160_ns.yaml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
133
```yaml board: name: actinius_icarus_som_dk vendor: actinius socs: - name: nrf9160 variants: - name: 'ns' ```
/content/code_sandbox/boards/actinius/icarus_som_dk/board.yml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
46
```restructuredtext .. _actinius_icarus: Actinius Icarus ############### Overview ******** .. figure:: img/Icarus_front.jpg :align: center :alt: Icarus IoT Dev Board Icarus IoT Dev Board (nRF9160 Feather) The Icarus is a cost-effective cellular IoT board in Adafruit's Feather/FeatherWing form factor...
/content/code_sandbox/boards/actinius/icarus/doc/index.rst
restructuredtext
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
2,718
```unknown # Enable MPU CONFIG_ARM_MPU=y # Enable hardware stack protection CONFIG_HW_STACK_PROTECTION=y # Enable TrustZone-M CONFIG_ARM_TRUSTZONE_M=y # Enable GPIO CONFIG_GPIO=y # Enable UART driver CONFIG_SERIAL=y # Enable console CONFIG_CONSOLE=y CONFIG_UART_CONSOLE=y ```
/content/code_sandbox/boards/actinius/icarus_som_dk/actinius_icarus_som_dk_defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
69
```unknown # Actinius Icarus SoM DK board configuration config BOARD_ACTINIUS_ICARUS_SOM_DK select SOC_NRF9160_SICA ```
/content/code_sandbox/boards/actinius/icarus_som_dk/Kconfig.actinius_icarus_som_dk
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
36
```unknown # Actinius Icarus SoM DK board configuration if BOARD_ACTINIUS_ICARUS_SOM_DK source "boards/actinius/common/Kconfig" # For the secure version of the board the firmware is linked at the beginning # of the flash, or into the code-partition defined in DT if it is intended to # be loaded by MCUboot. If the s...
/content/code_sandbox/boards/actinius/icarus_som_dk/Kconfig.defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
355
```yaml description: | The Icarus boards provide the user with 2 options regarding SIM usage for LTE-M/NB-IoT communication. Either using the on-board eSIM or using an external nano-SIM. The SIM can be selected by changing the `sim` property of the `sim_select` dt node to `esim` or `external`. compatible: "ac...
/content/code_sandbox/boards/actinius/icarus_som_dk/dts/bindings/actinius-sim-select.yaml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
166
```unknown /* * */ #include "actinius_icarus_som_dk_common-pinctrl.dtsi" #include <dt-bindings/led/led.h> #include <zephyr/dt-bindings/input/input-event-codes.h> / { model = "Actinius Icarus SoM DK"; compatible = "actinius,icarus_som_dk"; chosen { zephyr,console = &uart0; zephyr,shell-uart = &uart0; zephyr...
/content/code_sandbox/boards/actinius/icarus_som_dk/actinius_icarus_som_dk_common.dtsi
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
1,459
```cmake board_runner_args(jlink "--device=nRF9160_xxAA" "--speed=4000") include(${ZEPHYR_BASE}/boards/common/nrfjprog.board.cmake) include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake) ```
/content/code_sandbox/boards/actinius/icarus_som/board.cmake
cmake
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
56
```unknown /* * */ #include "actinius_icarus_som_common-pinctrl.dtsi" / { model = "Actinius Icarus SoM"; compatible = "actinius,icarus_som"; chosen { zephyr,console = &uart0; zephyr,shell-uart = &uart0; zephyr,uart-mcumgr = &uart0; }; aliases { watchdog0 = &wdt0; accel0 = &lis2dh12_accel; }; sim_...
/content/code_sandbox/boards/actinius/icarus_som/actinius_icarus_som_common.dtsi
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
758
```unknown # Enable MPU CONFIG_ARM_MPU=y # Enable hardware stack protection CONFIG_HW_STACK_PROTECTION=y # Enable TrustZone-M CONFIG_ARM_TRUSTZONE_M=y # Enable GPIO CONFIG_GPIO=y # Enable UART driver CONFIG_SERIAL=y # Enable console CONFIG_CONSOLE=y CONFIG_UART_CONSOLE=y ```
/content/code_sandbox/boards/actinius/icarus_som/actinius_icarus_som_defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
69
```unknown # Actinius Icarus SoM board configuration config BOARD_ACTINIUS_ICARUS_SOM select SOC_NRF9160_SICA ```
/content/code_sandbox/boards/actinius/icarus_som/Kconfig.actinius_icarus_som
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
33
```unknown /* */ &pinctrl { uart0_default: uart0_default { group1 { psels = <NRF_PSEL(UART_TX, 0, 9)>, <NRF_PSEL(UART_RX, 0, 6)>; }; }; uart0_sleep: uart0_sleep { group1 { psels = <NRF_PSEL(UART_TX, 0, 9)>, <NRF_PSEL(UART_RX, 0, 6)>; low-power-enable; }; }; i2c2_default: i2c2_default {...
/content/code_sandbox/boards/actinius/icarus_som/actinius_icarus_som_common-pinctrl.dtsi
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
252
```cmake # Suppress "unique_unit_address_if_enabled" to handle the following overlaps: # - flash-controller@39000 & kmu@39000 # - power@5000 & clock@5000 list(APPEND EXTRA_DTC_FLAGS "-Wno-unique_unit_address_if_enabled") ```
/content/code_sandbox/boards/actinius/icarus_som/pre_dt_board.cmake
cmake
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
60
```yaml identifier: actinius_icarus_som/nrf9160/ns name: Actinius Icarus SoM Non-Secure type: mcu arch: arm toolchain: - gnuarmemb - xtools - zephyr ram: 128 flash: 192 supported: - gpio - i2c - pwm - watchdog - counter vendor: actinius ```
/content/code_sandbox/boards/actinius/icarus_som/actinius_icarus_som_nrf9160_ns.yaml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
100
```unknown /* * */ /dts-v1/; #include <nordic/nrf9160ns_sica.dtsi> #include "actinius_icarus_som_common.dtsi" / { chosen { zephyr,flash = &flash0; zephyr,sram = &sram0_ns; zephyr,code-partition = &slot0_ns_partition; }; }; ```
/content/code_sandbox/boards/actinius/icarus_som/actinius_icarus_som_nrf9160_ns.dts
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
86
```yaml identifier: actinius_icarus_som/nrf9160 name: Actinius Icarus SoM type: mcu arch: arm toolchain: - gnuarmemb - xtools - zephyr ram: 88 flash: 256 supported: - gpio - i2c - pwm - watchdog - counter vendor: actinius ```
/content/code_sandbox/boards/actinius/icarus_som/actinius_icarus_som_nrf9160.yaml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
96
```yaml board: name: actinius_icarus_som vendor: actinius socs: - name: nrf9160 variants: - name: 'ns' ```
/content/code_sandbox/boards/actinius/icarus_som/board.yml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
44
```unknown /* * */ /* * Default Flash planning for actinius_icarus_som. * * Zephyr build for nRF9160 with ARM TrustZone-M support, * implies building Secure and Non-Secure Zephyr images. * * Secure image will be placed, by default, in flash0 * (or in slot0, if MCUboot is present). * Secure image will use sra...
/content/code_sandbox/boards/actinius/icarus_som/actinius_icarus_som_partition_conf.dtsi
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
379
```restructuredtext .. _actinius_icarus_som_dk: Actinius Icarus SoM DK ###################### Overview ******** .. figure:: img/icarus-som-dk.jpg :width: 450px :align: center :alt: Icarus SoM DK Icarus SoM Development Kit (nRF9160) The Icarus SoM DK is a single board development kit for evaluat...
/content/code_sandbox/boards/actinius/icarus_som_dk/doc/index.rst
restructuredtext
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
2,663
```unknown # Enable MPU CONFIG_ARM_MPU=y # Enable hardware stack protection CONFIG_HW_STACK_PROTECTION=y # Enable TrustZone-M CONFIG_ARM_TRUSTZONE_M=y # Enable GPIO CONFIG_GPIO=y # Enable UART driver CONFIG_SERIAL=y # Enable console CONFIG_CONSOLE=y CONFIG_UART_CONSOLE=y # This board implies building Non-Secure ...
/content/code_sandbox/boards/actinius/icarus_som/actinius_icarus_som_nrf9160_ns_defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
90
```unknown /* * */ /dts-v1/; #include <nordic/nrf9160_sica.dtsi> #include "actinius_icarus_som_common.dtsi" / { chosen { zephyr,sram = &sram0_s; zephyr,flash = &flash0; zephyr,code-partition = &slot0_partition; zephyr,sram-secure-partition = &sram0_s; zephyr,sram-non-secure-partition = &sram0_ns; }; }; ...
/content/code_sandbox/boards/actinius/icarus_som/actinius_icarus_som_nrf9160.dts
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
119
```unknown # Actinius Icarus SoM board configuration if BOARD_ACTINIUS_ICARUS_SOM source "boards/actinius/common/Kconfig" # For the secure version of the board the firmware is linked at the beginning # of the flash, or into the code-partition defined in DT if it is intended to # be loaded by MCUboot. If the secure ...
/content/code_sandbox/boards/actinius/icarus_som/Kconfig.defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
344
```yaml description: | The Icarus boards provide the user with 2 options regarding SIM usage for LTE-M/NB-IoT communication. Either using the on-board eSIM or using an external nano-SIM. The SIM can be selected by changing the `sim` property of the `sim_select` dt node to `esim` or `external`. compatible: "ac...
/content/code_sandbox/boards/actinius/icarus_som/dts/bindings/actinius-sim-select.yaml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
166
```restructuredtext .. _boards-lilygo: Lilygo ###### .. toctree:: :maxdepth: 1 :glob: **/* ```
/content/code_sandbox/boards/lilygo/index.rst
restructuredtext
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
34
```cmake if(NOT "${OPENOCD}" MATCHES "^${ESPRESSIF_TOOLCHAIN_PATH}/.*") set(OPENOCD OPENOCD-NOTFOUND) endif() find_program(OPENOCD openocd PATHS ${ESPRESSIF_TOOLCHAIN_PATH}/openocd-esp32/bin NO_DEFAULT_PATH) include(${ZEPHYR_BASE}/boards/common/esp32.board.cmake) include(${ZEPHYR_BASE}/boards/common/openocd.board.c...
/content/code_sandbox/boards/lilygo/ttgo_lora32/board.cmake
cmake
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
129
```unknown /* * */ #include <zephyr/dt-bindings/pinctrl/esp-pinctrl-common.h> #include <dt-bindings/pinctrl/esp32-pinctrl.h> #include <zephyr/dt-bindings/pinctrl/esp32-gpio-sigmap.h> &pinctrl { uart0_default: uart0_default { group1 { pinmux = <UART0_TX_GPIO1>; output-high; }; group2 { pinmux = <UAR...
/content/code_sandbox/boards/lilygo/ttgo_lora32/ttgo_lora32-pinctrl.dtsi
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
260
```unknown # TTGO LoRa32 board configuration config BOARD_TTGO_LORA32 select SOC_ESP32_PICO_D4 select SOC_ESP32_PROCPU if BOARD_TTGO_LORA32_ESP32_PROCPU select SOC_ESP32_APPCPU if BOARD_TTGO_LORA32_ESP32_APPCPU ```
/content/code_sandbox/boards/lilygo/ttgo_lora32/Kconfig.ttgo_lora32
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
71
```unknown choice BOOTLOADER default BOOTLOADER_MCUBOOT endchoice choice BOOT_SIGNATURE_TYPE default BOOT_SIGNATURE_TYPE_NONE endchoice ```
/content/code_sandbox/boards/lilygo/ttgo_lora32/Kconfig.sysbuild
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
32
```yaml identifier: ttgo_lora32/esp32/appcpu name: TTGO LoRa32 APPCPU type: mcu arch: xtensa toolchain: - zephyr supported: - uart testing: ignore_tags: - net - bluetooth - flash - cpp - posix - watchdog - logging - kernel - pm - gpio - crypto - eeprom - heap ...
/content/code_sandbox/boards/lilygo/ttgo_lora32/ttgo_lora32_esp32_appcpu.yaml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
130
```unknown CONFIG_MAIN_STACK_SIZE=2048 CONFIG_CLOCK_CONTROL=y CONFIG_MINIMAL_LIBC=y ```
/content/code_sandbox/boards/lilygo/ttgo_lora32/ttgo_lora32_esp32_appcpu_defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
22
```restructuredtext .. _actinius_icarus_som: Actinius Icarus SoM ################### Overview ******** .. figure:: img/icarus-som.jpg :align: center :alt: Icarus SoM Icarus SoM (nRF9160) The Icarus SoM is a coin-sized, easy-to-solder cellular IoT Module built around Nordic Semi's nRF9160 modem and c...
/content/code_sandbox/boards/actinius/icarus_som/doc/index.rst
restructuredtext
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
1,096
```yaml board: name: ttgo_lora32 vendor: lilygo socs: - name: esp32 ```
/content/code_sandbox/boards/lilygo/ttgo_lora32/board.yml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
30
```unknown CONFIG_MAIN_STACK_SIZE=2048 CONFIG_CONSOLE=y CONFIG_SERIAL=y CONFIG_UART_CONSOLE=y CONFIG_GPIO=y CONFIG_I2C=y ```
/content/code_sandbox/boards/lilygo/ttgo_lora32/ttgo_lora32_esp32_procpu_defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
33
```unknown # Lilygo ttgo LoRa32 board configuration if BOARD_TTGO_LORA32_ESP32_PROCPU config ENTROPY_GENERATOR default y config HEAP_MEM_POOL_ADD_SIZE_BOARD int default 65535 if WIFI && BT default 51200 if WIFI default 40960 if BT default 4096 endif # BOARD_TTGO_LORA32_ESP32_PROCPU if BOARD_TTGO_LORA32_ESP3...
/content/code_sandbox/boards/lilygo/ttgo_lora32/Kconfig.defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
130
```unknown /* * */ /dts-v1/; #include <espressif/esp32/esp32_appcpu.dtsi> / { model = "ttgo LoRa32 APPCPU"; compatible = "espressif,esp32"; chosen { zephyr,sram = &sram0; zephyr,ipc_shm = &shm0; zephyr,ipc = &ipm0; }; }; &ipm0 { status = "okay"; }; &trng0 { status = "okay"; }; &flash0 { status = "o...
/content/code_sandbox/boards/lilygo/ttgo_lora32/ttgo_lora32_esp32_appcpu.dts
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
403
```yaml identifier: ttgo_lora32/esp32/procpu name: TTGO LoRa32 PROCPU type: mcu arch: xtensa toolchain: - zephyr supported: - gpio - i2c - spi - watchdog - uart - pinmux - display - lora - nvs testing: ignore_tags: - net - bluetooth vendor: lilygo ```
/content/code_sandbox/boards/lilygo/ttgo_lora32/ttgo_lora32_esp32_procpu.yaml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
106
```ini set ESP_RTOS none set ESP32_ONLYCPU 1 source [find interface/ftdi/esp32_devkitj_v1.cfg] source [find target/esp32.cfg] ```
/content/code_sandbox/boards/lilygo/ttgo_lora32/support/openocd.cfg
ini
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
41
```unknown /* * */ /dts-v1/; #include <espressif/esp32/esp32_pico_d4.dtsi> #include "ttgo_lora32-pinctrl.dtsi" #include <zephyr/dt-bindings/input/input-event-codes.h> / { model = "ttgo LoRa32 PROCPU"; compatible = "lilygo,ttgo-lora32"; aliases { led0 = &green_led; uart-0 = &uart0; i2c-0 = &i2c0; watchdo...
/content/code_sandbox/boards/lilygo/ttgo_lora32/ttgo_lora32_esp32_procpu.dts
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
1,087
```cmake if(NOT "${OPENOCD}" MATCHES "^${ESPRESSIF_TOOLCHAIN_PATH}/.*") set(OPENOCD OPENOCD-NOTFOUND) endif() find_program(OPENOCD openocd PATHS ${ESPRESSIF_TOOLCHAIN_PATH}/openocd-esp32/bin NO_DEFAULT_PATH) include(${ZEPHYR_BASE}/boards/common/esp32.board.cmake) include(${ZEPHYR_BASE}/boards/common/openocd.board.c...
/content/code_sandbox/boards/lilygo/ttgo_t8c3/board.cmake
cmake
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
102
```unknown /* * */ /dts-v1/; #include <espressif/esp32c3/esp32c3_common.dtsi> #include "ttgo_t8c3-pinctrl.dtsi" / { model = "Lilygo TTGO T8-C3"; compatible = "lilygo,ttgo-t8c3"; aliases { led0 = &green_led; i2c-0 = &i2c0; watchdog0 = &wdt0; }; chosen { zephyr,sram = &sram0; zephyr,console = &usb_s...
/content/code_sandbox/boards/lilygo/ttgo_t8c3/ttgo_t8c3.dts
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
730
```yaml identifier: ttgo_t8c3 name: TTGO T8C3 type: mcu arch: riscv toolchain: - zephyr supported: - gpio - i2c - spi - uart - watchdog - can testing: ignore_tags: - net - bluetooth vendor: lilygo ```
/content/code_sandbox/boards/lilygo/ttgo_t8c3/ttgo_t8c3.yaml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
87
```unknown choice BOOTLOADER default BOOTLOADER_MCUBOOT endchoice choice BOOT_SIGNATURE_TYPE default BOOT_SIGNATURE_TYPE_NONE endchoice ```
/content/code_sandbox/boards/lilygo/ttgo_t8c3/Kconfig.sysbuild
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
32
```unknown /* * */ #include <zephyr/dt-bindings/pinctrl/esp-pinctrl-common.h> #include <dt-bindings/pinctrl/esp32c3-pinctrl.h> #include <zephyr/dt-bindings/pinctrl/esp32c3-gpio-sigmap.h> &pinctrl { uart0_default: uart0_default { group1 { pinmux = <UART0_TX_GPIO21>; output-high; }; group2 { pinmux = ...
/content/code_sandbox/boards/lilygo/ttgo_t8c3/ttgo_t8c3-pinctrl.dtsi
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
310
```unknown config BOARD_TTGO_T8C3 select SOC_ESP32C3_FX4 ```
/content/code_sandbox/boards/lilygo/ttgo_t8c3/Kconfig.ttgo_t8c3
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
23
```unknown CONFIG_MAIN_STACK_SIZE=2048 CONFIG_CONSOLE=y CONFIG_SERIAL=y CONFIG_UART_CONSOLE=y CONFIG_GPIO=y ```
/content/code_sandbox/boards/lilygo/ttgo_t8c3/ttgo_t8c3_defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
27
```yaml board: name: ttgo_t8c3 vendor: lilygo socs: - name: esp32c3 ```
/content/code_sandbox/boards/lilygo/ttgo_t8c3/board.yml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
33
```unknown config HEAP_MEM_POOL_ADD_SIZE_BOARD int default 65535 if WIFI && BT default 51200 if WIFI default 40960 if BT default 4096 ```
/content/code_sandbox/boards/lilygo/ttgo_t8c3/Kconfig.defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
40
```restructuredtext .. _ttgo_lora32: Lilygo TTGO LoRa32 ################## Overview ******** The Lilygo TTGO LoRa32 is a development board for LoRa applications baesed on the ESP32-PICO-D4. It's available in two versions supporting two different frequency ranges and features the following integrated components: - ...
/content/code_sandbox/boards/lilygo/ttgo_lora32/doc/index.rst
restructuredtext
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
1,806
```ini set ESP_RTOS none source [find interface/esp_usb_jtag.cfg] source [find target/esp32c3.cfg] adapter_khz 5000 ```
/content/code_sandbox/boards/lilygo/ttgo_t8c3/support/openocd.cfg
ini
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
36
```restructuredtext .. _boards-wemos: Wemos ##### .. toctree:: :maxdepth: 1 :glob: **/* ```
/content/code_sandbox/boards/wemos/index.rst
restructuredtext
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
32
```unknown /* * */ #include <zephyr/dt-bindings/pinctrl/esp-pinctrl-common.h> #include <dt-bindings/pinctrl/esp32s2-pinctrl.h> #include <zephyr/dt-bindings/pinctrl/esp32s2-gpio-sigmap.h> &pinctrl { uart0_default: uart0_default { group1 { pinmux = <UART0_TX_GPIO16>; output-high; }; group2 { pinmux =...
/content/code_sandbox/boards/wemos/esp32s2_lolin_mini/esp32s2_lolin_mini-pinctrl.dtsi
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
131
```cmake if(NOT "${OPENOCD}" MATCHES "^${ESPRESSIF_TOOLCHAIN_PATH}/.*") set(OPENOCD OPENOCD-NOTFOUND) endif() find_program(OPENOCD openocd PATHS ${ESPRESSIF_TOOLCHAIN_PATH}/openocd-esp32/bin NO_DEFAULT_PATH) include(${ZEPHYR_BASE}/boards/common/esp32.board.cmake) include(${ZEPHYR_BASE}/boards/common/openocd.board.c...
/content/code_sandbox/boards/wemos/esp32s2_lolin_mini/board.cmake
cmake
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
102
```yaml identifier: esp32s2_lolin_mini name: Lolin ESP32-S2 Mini type: mcu arch: xtensa toolchain: - zephyr supported: - gpio - watchdog - uart testing: ignore_tags: - net - bluetooth vendor: wemos ```
/content/code_sandbox/boards/wemos/esp32s2_lolin_mini/esp32s2_lolin_mini.yaml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
73
```unknown /* * */ /dts-v1/; #include <espressif/esp32s2/esp32s2.dtsi> #include <zephyr/dt-bindings/input/input-event-codes.h> #include "esp32s2_lolin_mini-pinctrl.dtsi" / { model = "Wemos ESP32S2-Lolin Mini"; compatible = "espressif,esp32s2"; aliases { sw0 = &user_button; led0 = &user_led; watchdog0 = &...
/content/code_sandbox/boards/wemos/esp32s2_lolin_mini/esp32s2_lolin_mini.dts
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
716
```unknown # ESP32S2 LOLIN S2 MINI board configuration config BOARD_ESP32S2_LOLIN_MINI select SOC_ESP32S2_FN4R2 ```
/content/code_sandbox/boards/wemos/esp32s2_lolin_mini/Kconfig.esp32s2_lolin_mini
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
39
```restructuredtext .. _ttgo_t8c3: Lilygo TTGO T8-C3 ################# Overview ******** Lilygo TTGO T8-C3 is an IoT mini development board based on the Espressif ESP32-C3 WiFi/Bluetooth dual-mode chip. It features the following integrated components: - ESP32-C3 chip (160MHz single core, 400KB SRAM, Wi-Fi) - on bo...
/content/code_sandbox/boards/lilygo/ttgo_t8c3/doc/index.rst
restructuredtext
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
1,602
```yaml board: name: esp32s2_lolin_mini vendor: wemos socs: - name: esp32s2 ```
/content/code_sandbox/boards/wemos/esp32s2_lolin_mini/board.yml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
33
```unknown CONFIG_MAIN_STACK_SIZE=2048 CONFIG_CONSOLE=y CONFIG_SERIAL=y CONFIG_UART_CONSOLE=y CONFIG_GPIO=y ```
/content/code_sandbox/boards/wemos/esp32s2_lolin_mini/esp32s2_lolin_mini_defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
27
```unknown # ESP32S2 LOLIN S2 MINI board configuration config ENTROPY_GENERATOR default y config HEAP_MEM_POOL_ADD_SIZE_BOARD int default 32768 if WIFI default 4096 ```
/content/code_sandbox/boards/wemos/esp32s2_lolin_mini/Kconfig.defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
47
```ini set ESP_RTOS none source [find interface/ftdi/esp32s2_kaluga_v1.cfg] source [find target/esp32s2.cfg] ```
/content/code_sandbox/boards/wemos/esp32s2_lolin_mini/support/openocd.cfg
ini
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
37
```restructuredtext .. _boards-ruuvi: Ruuvi ##### .. toctree:: :maxdepth: 1 :glob: **/* ```
/content/code_sandbox/boards/ruuvi/index.rst
restructuredtext
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
35
```yaml identifier: ruuvi_ruuvitag name: Ruuvi-RuuviTag type: mcu arch: arm toolchain: - zephyr - gnuarmemb - xtools ram: 64 flash: 512 supported: - ble - adc - gpio - spi - counter - nvs - watchdog vendor: ruuvi ```
/content/code_sandbox/boards/ruuvi/ruuvitag/ruuvi_ruuvitag.yaml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
97
```cmake board_runner_args(jlink "--device=nRF52832_xxAA" "--speed=4000") include(${ZEPHYR_BASE}/boards/common/nrfjprog.board.cmake) include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake) ```
/content/code_sandbox/boards/ruuvi/ruuvitag/board.cmake
cmake
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
56
```restructuredtext .. _esp32s2_lolin_mini: ESP32-S2 Lolin Mini ################### Overview ******** ESP32-S2 is a highly integrated, low-power, single-core Wi-Fi Microcontroller SoC, designed to be secure and cost-effective, with a high performance and a rich set of IO capabilities. [1]_ The features include the ...
/content/code_sandbox/boards/wemos/esp32s2_lolin_mini/doc/index.rst
restructuredtext
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
602
```unknown config BOARD_RUUVI_RUUVITAG select SOC_NRF52832_QFAA ```
/content/code_sandbox/boards/ruuvi/ruuvitag/Kconfig.ruuvi_ruuvitag
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
24
```unknown /* */ &pinctrl { uart0_default: uart0_default { group1 { psels = <NRF_PSEL(UART_TX, 0, 5)>, <NRF_PSEL(UART_RX, 0, 4)>, <NRF_PSEL(UART_CTS, 0, 31)>, <NRF_PSEL(UART_RTS, 0, 30)>; }; }; uart0_sleep: uart0_sleep { group1 { psels = <NRF_PSEL(UART_TX, 0, 5)>, <NRF_PSEL(UART_RX, 0,...
/content/code_sandbox/boards/ruuvi/ruuvitag/ruuvi_ruuvitag-pinctrl.dtsi
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
354
```cmake # Suppress "unique_unit_address_if_enabled" to handle the following overlaps: # - power@40000000 & clock@40000000 & bprot@40000000 # - acl@4001e000 & flash-controller@4001e000 list(APPEND EXTRA_DTC_FLAGS "-Wno-unique_unit_address_if_enabled") ```
/content/code_sandbox/boards/ruuvi/ruuvitag/pre_dt_board.cmake
cmake
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
72
```yaml board: name: ruuvi_ruuvitag vendor: ruuvi socs: - name: nrf52832 ```
/content/code_sandbox/boards/ruuvi/ruuvitag/board.yml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
33
```unknown # Enable MPU CONFIG_ARM_MPU=y # Enable console CONFIG_CONSOLE=y CONFIG_UART_CONSOLE=y CONFIG_SERIAL=y # Enable RTT CONFIG_USE_SEGGER_RTT=y # Enable GPIO CONFIG_GPIO=y CONFIG_PINCTRL=y ```
/content/code_sandbox/boards/ruuvi/ruuvitag/ruuvi_ruuvitag_defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
55
```unknown # Ruuvi RuuviTag configuration if BOARD_RUUVI_RUUVITAG config SPI default y config BT_CTLR default BT endif # BOARD_RUUVI_RUUVITAG ```
/content/code_sandbox/boards/ruuvi/ruuvitag/Kconfig.defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
50
```unknown /* * */ /dts-v1/; #include <nordic/nrf52832_qfaa.dtsi> #include "ruuvi_ruuvitag-pinctrl.dtsi" #include <zephyr/dt-bindings/input/input-event-codes.h> / { model = "Ruuvi RuuviTag"; compatible = "ruuvi,ruuvitag"; chosen { zephyr,console = &uart0; zephyr,shell-uart = &uart0; zephyr,uart-mcumgr = &...
/content/code_sandbox/boards/ruuvi/ruuvitag/ruuvi_ruuvitag.dts
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
1,004
```restructuredtext .. _boards-gd: GigaDevice Semiconductor ######################## .. toctree:: :maxdepth: 1 :glob: **/* ```
/content/code_sandbox/boards/gd/index.rst
restructuredtext
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
34
```cmake board_runner_args(pyocd "--target=gd32e507ve") board_runner_args(jlink "--device=GD32E507VE" "--speed=4000") include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake) include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake) ```
/content/code_sandbox/boards/gd/gd32e507v_start/board.cmake
cmake
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
70
```unknown /* */ /dts-v1/; #include <arm/gd/gd32e50x/gd32e507xe.dtsi> #include "gd32e507v_start-pinctrl.dtsi" #include <zephyr/dt-bindings/input/input-event-codes.h> / { model = "GigaDevice GD32E507V-START"; compatible = "gd,gd32e507v-start"; chosen { zephyr,sram = &sram0; zephyr,flash = &flash0; zephyr,c...
/content/code_sandbox/boards/gd/gd32e507v_start/gd32e507v_start.dts
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
475
```restructuredtext .. _ruuvi_ruuvitag: Ruuvi RuuviTag ############## Overview ******** RuuviTag is an advanced battery-operated open-source Bluetooth enabled sensor beacon platform capable of sending temperature, humidity, pressure, and motion information over Bluetooth Low Energy. .. figure:: img/ruuvitag.jpg ...
/content/code_sandbox/boards/ruuvi/ruuvitag/doc/index.rst
restructuredtext
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
1,509
```unknown CONFIG_ARM_MPU=y CONFIG_HW_STACK_PROTECTION=y CONFIG_CONSOLE=y CONFIG_UART_CONSOLE=y CONFIG_SERIAL=y CONFIG_GPIO=y ```
/content/code_sandbox/boards/gd/gd32e507v_start/gd32e507v_start_defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
32
```yaml board: name: gd32e507v_start vendor: gd socs: - name: gd32e507 ```
/content/code_sandbox/boards/gd/gd32e507v_start/board.yml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
31
```unknown config BOARD_GD32E507V_START select SOC_GD32E507 ```
/content/code_sandbox/boards/gd/gd32e507v_start/Kconfig.gd32e507v_start
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
20
```unknown /* */ #include <dt-bindings/pinctrl/gd32e507v(e-c)xx-pinctrl.h> &pinctrl { usart0_default: usart0_default { group1 { pinmux = <USART0_TX_PB6_RMP>, <USART0_RX_PB7_RMP>; }; }; pwm2_default: pwm2_default { group1 { pinmux = <TIMER2_CH0_PC6_OUT_FRMP>; }; }; }; ```
/content/code_sandbox/boards/gd/gd32e507v_start/gd32e507v_start-pinctrl.dtsi
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
107
```yaml identifier: gd32e507v_start name: GigaDevice GD32E507V-START type: mcu arch: arm ram: 128 flash: 512 toolchain: - zephyr - gnuarmemb - xtools supported: - pwm - gpio - watchdog - counter - dma vendor: gd ```
/content/code_sandbox/boards/gd/gd32e507v_start/gd32e507v_start.yaml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
90
```unknown CONFIG_ARM_MPU=y CONFIG_HW_STACK_PROTECTION=y CONFIG_CONSOLE=y CONFIG_UART_CONSOLE=y CONFIG_SERIAL=y CONFIG_GPIO=y ```
/content/code_sandbox/boards/gd/gd32e507z_eval/gd32e507z_eval_defconfig
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
32
```cmake board_runner_args(pyocd "--target=gd32e507ze") board_runner_args( jlink "--device=GD32E507ZE" "--iface=jtag" "--tool-opt=-JTAGConf -1,-1" ) include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake) include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake) ```
/content/code_sandbox/boards/gd/gd32e507z_eval/board.cmake
cmake
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
86
```unknown config BOARD_GD32E507Z_EVAL select SOC_GD32E507 ```
/content/code_sandbox/boards/gd/gd32e507z_eval/Kconfig.gd32e507z_eval
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
20
```restructuredtext .. _gd32e507v_start: GigaDevice GD32E507V-START ########################## Overview ******** The GD32E507V-START board is a hardware platform that enables prototyping on GD32E507VE Cortex-M33 High Performance MCU. The GD32E507VE features a single-core ARM Cortex-M33 MCU which can run up to 180 M...
/content/code_sandbox/boards/gd/gd32e507v_start/doc/index.rst
restructuredtext
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
1,022
```unknown /* */ #include <dt-bindings/pinctrl/gd32e507z(e-c)xx-pinctrl.h> &pinctrl { usart0_default: usart0_default { group1 { pinmux = <USART0_TX_PA9_NORMP>, <USART0_RX_PA10_NORMP>; }; }; pwm0_default: pwm0_default { group1 { pinmux = <TIMER0_CH0_PA8_OUT_NORMP>; }; }; }; ```
/content/code_sandbox/boards/gd/gd32e507z_eval/gd32e507z_eval-pinctrl.dtsi
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
110
```yaml board: name: gd32e507z_eval vendor: gd socs: - name: gd32e507 ```
/content/code_sandbox/boards/gd/gd32e507z_eval/board.yml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
31
```yaml identifier: gd32e507z_eval name: GigaDevice GD32E507Z-EVAL type: mcu arch: arm ram: 128 flash: 512 toolchain: - zephyr - gnuarmemb - xtools supported: - pwm - gpio - counter vendor: gd ```
/content/code_sandbox/boards/gd/gd32e507z_eval/gd32e507z_eval.yaml
yaml
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
82
```unknown /* */ /dts-v1/; #include <arm/gd/gd32e50x/gd32e507xe.dtsi> #include "gd32e507z_eval-pinctrl.dtsi" #include <zephyr/dt-bindings/input/input-event-codes.h> / { model = "GigaDevice GD32E507Z-EVAL"; compatible = "gd,gd32e507z-eval"; chosen { zephyr,sram = &sram0; zephyr,flash = &flash0; zephyr,cons...
/content/code_sandbox/boards/gd/gd32e507z_eval/gd32e507z_eval.dts
unknown
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
738
```cmake board_runner_args(pyocd "--target=gd32a503vd" "--tool-opt=--pack=${ZEPHYR_HAL_GIGADEVICE_MODULE_DIR}/${CONFIG_SOC_SERIES}/support/GigaDevice.GD32A50x_DFP.1.0.0.pack") include(${ZEPHYR_BASE}/boards/common/pyocd.board.cmake) board_runner_args(gd32isp "--device=GD32A503VDT3") include(${ZEPHYR_BASE}/boards/commo...
/content/code_sandbox/boards/gd/gd32a503v_eval/board.cmake
cmake
2016-05-26T17:54:19
2024-08-16T18:09:06
zephyr
zephyrproject-rtos/zephyr
10,307
114