View gcc-includes.cmake
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set(GCC_INCLUDE_DIRECTORIES) | |
if(WIN32) | |
execute_process( | |
COMMAND ${CMAKE_CXX_COMPILER} -v -x c++ -E NUL | |
ERROR_VARIABLE _gcc_output | |
OUTPUT_QUIET) | |
else() | |
execute_process( | |
COMMAND ${CMAKE_CXX_COMPILER} -v -x c++ -E - |
View cortex-gcc-flags.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Architecture options usage | |
-------------------------------------------------------------------- | |
| ARM Core | Command Line Options | multilib | | |
|----------|--------------------------------------------|----------| | |
|Cortex-M0+| -mthumb -mcpu=cortex-m0plus | armv6-m | | |
|Cortex-M0 | -mthumb -mcpu=cortex-m0 | | | |
|Cortex-M1 | -mthumb -mcpu=cortex-m1 | | | |
| |--------------------------------------------| | | |
| | -mthumb -march=armv6-m | | | |
|----------|--------------------------------------------|----------| |
View ASCII.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum class ASCII : char | |
{ | |
eNUL, | |
eSOH, | |
eSTX, | |
eETX, | |
eEOT, | |
eENQ, | |
eACK, | |
eBEL, |