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
#include <SPI.h> | |
const int spiCSEncoderPin = 10; | |
void setup() | |
{ | |
Serial.begin(115200); | |
pinMode(spiCSEncoderPin, OUTPUT); | |
digitalWrite(spiCSEncoderPin, HIGH); | |
SPI.begin(); |
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
target extended-remote :4242 | |
monitor reset halt | |
file app.elf | |
load app.elf | |
monitor reset run |