Skip to content

Commit 9ed1dee

Browse files
authored
remove defmt (#18)
* refactor pump control logic to use update_pump_state function and add software reset on error * refactor build configuration and logging; replace defmt with esp_println for output
1 parent 570d91c commit 9ed1dee

12 files changed

+143
-331
lines changed

.cargo/config.toml

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[target.xtensa-esp32s3-none-elf]
2-
runner = "probe-rs run --chip=esp32s3"
2+
runner = "espflash flash -c esp32s3 -s 16mb -m dio -f 80mhz --no-skip --monitor"
33

44
[env]
5-
DEFMT_LOG = "info"
5+
ESP_LOG = "INFO"
66
ESP_WIFI_COUNTRY_CODE = "DE"
77

88
[build]
@@ -12,8 +12,3 @@ target = "xtensa-esp32s3-none-elf"
1212

1313
[unstable]
1414
build-std = ["alloc", "core"]
15-
16-
[flash]
17-
mode = "qio"
18-
size = "16MB"
19-
frequency = "80MHz"

0 commit comments

Comments
 (0)