Compare commits

2 Commits

Author SHA1 Message Date
6d09ce7bc1 Ignore Cargo.lock 2023-09-26 19:41:36 -04:00
0f2d455a42 Remove unused heap allocator 2023-09-26 14:41:44 -04:00
3 changed files with 2 additions and 2 deletions

View File

@@ -14,4 +14,4 @@ rustflags = [
target = "xtensa-esp32-none-elf"
[unstable]
build-std = ["alloc", "core"]
build-std = ["core"]

1
.gitignore vendored
View File

@@ -2,6 +2,7 @@
# will have compiled files and executables
debug/
target/
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk

View File

@@ -1,7 +1,6 @@
#![no_std]
#![no_main]
extern crate alloc;
use esp_backtrace as _;
use embedded_hal::serial::Read;