We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b53e66d commit 07aae04Copy full SHA for 07aae04
README.md
@@ -48,12 +48,12 @@ info provided by your apps `build.rs`:
48
b.freertos("path/to/FreeRTOS-Kernel");
49
b.freertos_config("src"); // Location of `FreeRTOSConfig.h`
50
b.freertos_port("GCC/ARM_CM3"); // Port dir relativ to 'FreeRTOS-Kernel/portable'
51
- b.heap("heap4.c"); // Set the heap_?.c allocator to use from
+ b.heap("heap_4.c"); // Set the heap_?.c allocator to use from
52
// 'FreeRTOS-Kernel/portable/MemMang' (Default: heap_4.c)
53
54
// b.get_cc().file("More.c"); // Optional additional C-Code to be compiled
55
56
- b.compile().unwrap_or_else(|e| { panic!(e.to_string()) });
+ b.compile().unwrap_or_else(|e| { panic!("{}", e.to_string()) });
57
}
58
```
59
0 commit comments