@web-font-path: "roboto-debian.css";
Binary info is intended for embedding machine readable information with the binary in FLASH. More...
Macros | |
#define | bi_decl(_decl) |
Declare some binary information that will be included if the contain source file/line is compiled into the binary. | |
#define | bi_decl_if_func_used(_decl) |
Declare some binary information that will be included if the function containing the decl is linked into the binary. The SDK uses –gc-sections, so functions that are never called will be removed by the linker, and any associated binary information declared this way will also be stripped. | |
Binary info is intended for embedding machine readable information with the binary in FLASH.
Example uses include:
#define bi_decl | ( | _decl | ) |
Declare some binary information that will be included if the contain source file/line is compiled into the binary.
#define bi_decl_if_func_used | ( | _decl | ) |
Declare some binary information that will be included if the function containing the decl is linked into the binary. The SDK uses –gc-sections, so functions that are never called will be removed by the linker, and any associated binary information declared this way will also be stripped.