🏄♂️
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
/** To prevent your code having multiply included header files, | |
* and hence possibly multiply declared functions and variables, | |
* the following tactic is used in the file to be included which will | |
* prevent the code from being compiled more than once. | |
*/ | |
// The "ifndef" combined with the matching "endif" directives serve as a pre-processor | |
// "if not defined" statement, where the code between these two directives will only | |
// Be compiled if, in this case, the symbol "NAME_OF_HEADER_FILE_H" has not been defined. |
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
✔ | |
✘ |
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
STM32F0x -> STLinkv2: | |
sudo openocd -f interface/stlink-v2.cfg -f target/stm32f0x_stlink.cfg |
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
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
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
// Paste this at the top of your main file | |
#define EVER ;; | |
#define RCC_PERHIPHBASE 0x40021000 | |
#define RCC_AHBENR (RCC_PERHIPHBASE + 0x14) | |
#define GPIOB_PERIPHBASE 0x48000400 | |
#define GPIOB_MODER (GPIOB_PERIPHBASE + 0x00) | |
#define GPIO_ODR (GPIOB_PERIPHBASE + 0x14) |
NewerOlder