Skip to content

Commit f2a4697

Browse files
committed
Merge branch 'release/v3.0.0'
2 parents a2eff52 + 7165150 commit f2a4697

24 files changed

+1600
-992
lines changed

CHANGELOG.md

Lines changed: 26 additions & 611 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
* Multi-platform and Multi-architecture Build System
1111
* Firmware File Explorer and Memory Inspection.
1212

13-
**Platforms**: Atmel AVR, Atmel SAM, Espressif 32, Espressif 8266, Freescale Kinetis, Infineon XMC, Intel ARC32, Intel MCS-51 (8051), Kendryte K210, Lattice iCE40, Maxim 32, Microchip PIC32, Nordic nRF51, Nordic nRF52, NXP LPC, RISC-V, Samsung ARTIK, Silicon Labs EFM32, ST STM32, ST STM8, Teensy, TI MSP430, TI Tiva, WIZNet W7500
13+
**Platforms**: Atmel AVR, Atmel SAM, Espressif 32, Espressif 8266, Freescale Kinetis, Infineon XMC, Intel ARC32, Intel MCS-51 (8051), Kendryte K210, Lattice iCE40, Maxim 32, Microchip PIC32, Nordic nRF51, Nordic nRF52, NXP LPC, RISC-V, Silicon Labs EFM32, ST STM32, ST STM8, Teensy, TI MSP430, TI Tiva, WIZNet W7500
1414

15-
**Frameworks**: Arduino, ARTIK SDK, CMSIS, ESP-IDF, ESP8266 RTOS SDK, Freedom E SDK, Kendryte Standalone SDK, Kendryte FreeRTOS SDK, libOpenCM3, mbed, PULP OS, Pumbaa, Simba, SPL, STM32Cube, Tizen RT, WiringPi, Zephyr RTOS
15+
**Frameworks**: Arduino, CMSIS, ESP-IDF, ESP8266 RTOS SDK, Freedom E SDK, Kendryte Standalone SDK, Kendryte FreeRTOS SDK, libOpenCM3, mbed, PULP OS, SPL, STM32Cube, WiringPi, Zephyr RTOS
1616

1717
## Features
1818

230 KB
Loading
87.4 KB
Loading
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
```ini
2+
; Common configuration
3+
[env]
4+
platform = espressif32@^5
5+
framework = arduino
6+
board = esp32doit-devkit-v1
7+
monitor_speed = 921600
8+
monitor_filter = esp32_exception_decoder
9+
lib_deps =
10+
nanopb/Nanopb @ ^0.4.6
11+
infineon/TLV493D-Magnetic-Sensor @ ^1.0.3
12+
build_flags =
13+
-D ARDUINO_LOOP_STACK_SIZE=2048
14+
-D CORE_DEBUG_LEVEL=ARDUHAL_LOG_LEVEL_DEBUG
15+
-Wno-nonnull-compare
16+
17+
; Production environment
18+
[env:release]
19+
build_flags =
20+
${env.build_flags}
21+
-D PRODUCTION=1
22+
23+
; Development environment
24+
[env:develop]
25+
build_type = debug
26+
lib_deps =
27+
${env.lib_deps}
28+
bakercp/PacketSerial @ 1.4.0
29+
debug_extra_cmds =
30+
set remote hardware-watchpoint-limit 2
31+
```
Loading
342 KB
Loading

0 commit comments

Comments
 (0)