We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9ffee9b commit b3cc32cCopy full SHA for b3cc32c
README.md
@@ -46,8 +46,10 @@ info provided by your apps `build.rs`:
46
47
b.freertos("FreeRTOS-Kernel"); // Path to copy of the FreeRTOS kernel "C" code
48
b.freertos_config("src"); // Location of `FreeRTOSConfig.h`
49
- b.freertos_port("GCC/ARM_CM3"); // Port dir relativ to the FreeRTOS-Kernel/portable directory, e.g. "GCC/ARM_CM3"
50
- // b.get_cc().file("optionalAdditionCode.c");
+ b.freertos_port("GCC/ARM_CM3"); // Port dir relativ to the
+ // 'FreeRTOS-Kernel/portable' dir, e.g. 'GCC/ARM_CM3'
51
+
52
+ // b.get_cc().file("More.c"); // Optional additional C-Code to be compiled
53
54
b.compile().unwrap_or_else(|e| { panic!(e.to_string()) });
55
}
0 commit comments