726 lines
21 KiB
C++
726 lines
21 KiB
C++
/*
|
|
Interactive Test Session for LeafLabs Maple
|
|
|
|
Useful for testing Maple features and troubleshooting.
|
|
Communicates over Serial.
|
|
|
|
This code is released into the public domain.
|
|
*/
|
|
|
|
// ASCII escape character
|
|
#define ESC ((uint8)27)
|
|
|
|
// Default USART baud rate
|
|
#define BAUD 9600
|
|
|
|
uint8 gpio_state[BOARD_NR_GPIO_PINS];
|
|
|
|
const char* dummy_data = ("qwertyuiopasdfghjklzxcvbnmmmmmm,./1234567890-="
|
|
"qwertyuiopasdfghjklzxcvbnm,./1234567890");
|
|
|
|
// -- setup() and loop() ------------------------------------------------------
|
|
|
|
void setup() {
|
|
Serial.begin(115200); // Ignored by Maple. But needed by boards using hardware serial via a USB to Serial adaptor
|
|
// Set up the LED to blink
|
|
pinMode(33, OUTPUT);
|
|
|
|
// Start up the serial ports
|
|
Serial1.begin(BAUD);
|
|
Serial2.begin(BAUD);
|
|
Serial3.begin(BAUD);
|
|
|
|
// Send a message out over Serial interface
|
|
Serial.println(" ");
|
|
Serial.println(" __ __ _ _");
|
|
Serial.println(" | \\/ | __ _ _ __ | | ___| |");
|
|
Serial.println(" | |\\/| |/ _` | '_ \\| |/ _ \\ |");
|
|
Serial.println(" | | | | (_| | |_) | | __/_|");
|
|
Serial.println(" |_| |_|\\__,_| .__/|_|\\___(_)");
|
|
Serial.println(" |_|");
|
|
Serial.println(" by leaflabs");
|
|
Serial.println("");
|
|
Serial.println("");
|
|
Serial.println("Maple interactive test program (type '?' for help)");
|
|
Serial.println("----------------------------------------------------------");
|
|
Serial.print("> ");
|
|
|
|
}
|
|
|
|
void loop () {
|
|
digitalWrite(33,!digitalRead(33));// Turn the LED from off to on, or on to off
|
|
delay(100);
|
|
|
|
while (Serial.available()) {
|
|
uint8 input = Serial.read();
|
|
Serial.println(input);
|
|
|
|
switch(input) {
|
|
case '\r':
|
|
break;
|
|
|
|
case ' ':
|
|
Serial.println("spacebar, nice!");
|
|
break;
|
|
|
|
case '?':
|
|
case 'h':
|
|
cmd_print_help();
|
|
break;
|
|
|
|
case 'u':
|
|
Serial.println("Hello World!");
|
|
break;
|
|
|
|
case 'w':
|
|
Serial1.println("Hello World!");
|
|
Serial2.println("Hello World!");
|
|
Serial3.println("Hello World!");
|
|
break;
|
|
|
|
case 'm':
|
|
cmd_serial1_serial3();
|
|
break;
|
|
|
|
case '.':
|
|
while (!Serial.available()) {
|
|
Serial1.print(".");
|
|
Serial2.print(".");
|
|
Serial3.print(".");
|
|
Serial.print(".");
|
|
}
|
|
break;
|
|
|
|
case 'n':
|
|
cmd_adc_stats();
|
|
break;
|
|
|
|
case 'N':
|
|
cmd_stressful_adc_stats();
|
|
break;
|
|
|
|
case 'e':
|
|
cmd_everything();
|
|
break;
|
|
|
|
case 'W':
|
|
while (!Serial.available()) {
|
|
Serial1.print(dummy_data);
|
|
Serial2.print(dummy_data);
|
|
Serial3.print(dummy_data);
|
|
}
|
|
break;
|
|
|
|
case 'U':
|
|
Serial.println("Dumping data to USB. Press any key.");
|
|
while (!Serial.available()) {
|
|
Serial.print(dummy_data);
|
|
}
|
|
break;
|
|
|
|
case 'g':
|
|
cmd_sequential_gpio_writes();
|
|
break;
|
|
|
|
case 'G':
|
|
cmd_gpio_toggling();
|
|
break;
|
|
|
|
case 'f':
|
|
Serial.println("Wiggling D4 as fast as possible in bursts. "
|
|
"Press any key.");
|
|
pinMode(4, OUTPUT);
|
|
while (!Serial.available()) {
|
|
fast_gpio(4);
|
|
delay(1);
|
|
}
|
|
break;
|
|
|
|
case 'p':
|
|
cmd_sequential_pwm_test();
|
|
break;
|
|
|
|
case '_':
|
|
Serial.println("Delaying for 5 seconds...");
|
|
delay(5000);
|
|
break;
|
|
|
|
// Be sure to update cmd_print_help() if you implement these:
|
|
|
|
case 't': // TODO
|
|
Serial.println("Unimplemented.");
|
|
break;
|
|
|
|
case 'T': // TODO
|
|
Serial.println("Unimplemented.");
|
|
break;
|
|
|
|
case 's':
|
|
cmd_servo_sweep();
|
|
break;
|
|
|
|
case 'd':
|
|
Serial.println("Pulling down D4, D22. Press any key.");
|
|
pinMode(22, INPUT_PULLDOWN);
|
|
pinMode(4, INPUT_PULLDOWN);
|
|
while (!Serial.available()) {
|
|
continue;
|
|
}
|
|
Serial.println("Pulling up D4, D22. Press any key.");
|
|
pinMode(22, INPUT_PULLUP);
|
|
pinMode(4, INPUT_PULLUP);
|
|
while (!Serial.available()) {
|
|
continue;
|
|
}
|
|
Serial.read();
|
|
pinMode(4, OUTPUT);
|
|
break;
|
|
|
|
// Be sure to update cmd_print_help() if you implement these:
|
|
|
|
case 'i': // TODO
|
|
Serial.println("Unimplemented.");
|
|
break;
|
|
|
|
case 'I': // TODO
|
|
Serial.println("Unimplemented.");
|
|
break;
|
|
|
|
case 'r':
|
|
cmd_gpio_monitoring();
|
|
break;
|
|
|
|
case 'a':
|
|
cmd_sequential_adc_reads();
|
|
break;
|
|
|
|
case 'b':
|
|
cmd_board_info();
|
|
break;
|
|
|
|
case '+':
|
|
cmd_gpio_qa();
|
|
break;
|
|
|
|
default: // -------------------------------
|
|
Serial.print("Unexpected: ");
|
|
Serial.print(input);
|
|
Serial.println(", press h for help.");
|
|
}
|
|
|
|
Serial.print("> ");
|
|
}
|
|
}
|
|
|
|
// -- Commands ----------------------------------------------------------------
|
|
|
|
void cmd_print_help(void) {
|
|
Serial.println("");
|
|
Serial.println("Command Listing");
|
|
Serial.println("\t?: print this menu");
|
|
Serial.println("\th: print this menu");
|
|
Serial.println("\tw: print Hello World on all 3 USARTS");
|
|
Serial.println("\tn: measure noise and do statistics");
|
|
Serial.println("\tN: measure noise and do statistics with background stuff");
|
|
Serial.println("\ta: show realtime ADC info");
|
|
Serial.println("\t.: echo '.' until new input");
|
|
Serial.println("\tu: print Hello World on USB");
|
|
Serial.println("\t_: do as little as possible for a couple seconds (delay)");
|
|
Serial.println("\tp: test all PWM channels sequentially");
|
|
Serial.println("\tW: dump data as fast as possible on all 3 USARTS");
|
|
Serial.println("\tU: dump data as fast as possible on USB");
|
|
Serial.println("\tg: toggle GPIOs sequentially");
|
|
Serial.println("\tG: toggle GPIOs at the same time");
|
|
Serial.println("\tf: toggle pin 4 as fast as possible in bursts");
|
|
Serial.println("\tr: monitor and print GPIO status changes");
|
|
Serial.println("\ts: output a sweeping servo PWM on all PWM channels");
|
|
Serial.println("\tm: output data on USART1 and USART3 with various rates");
|
|
Serial.println("\tb: print information about the board.");
|
|
Serial.println("\t+: test shield mode (for quality assurance testing)");
|
|
|
|
Serial.println("Unimplemented:");
|
|
Serial.println("\te: do everything all at once until new input");
|
|
Serial.println("\tt: output a 1khz squarewave on all GPIOs");
|
|
Serial.println("\tT: output a 1hz squarewave on all GPIOs");
|
|
Serial.println("\ti: print out a bunch of info about system state");
|
|
Serial.println("\tI: print out status of all headers");
|
|
}
|
|
|
|
void cmd_adc_stats(void) {
|
|
Serial.println("Taking ADC noise stats.");
|
|
digitalWrite(33, 0);
|
|
for (uint32 i = 0; i < BOARD_NR_ADC_PINS; i++) {
|
|
delay(5);
|
|
measure_adc_noise(boardADCPins[i]);
|
|
}
|
|
}
|
|
|
|
void cmd_stressful_adc_stats(void) {
|
|
Serial.println("Taking ADC noise stats under duress.");
|
|
|
|
for (uint32 i = 0; i < BOARD_NR_ADC_PINS; i++) {
|
|
for (uint32 j = 0; j < BOARD_NR_PWM_PINS; j++) {
|
|
if (boardADCPins[i] != boardPWMPins[j]) {
|
|
pinMode(boardPWMPins[j], PWM);
|
|
pwmWrite(boardPWMPins[j], 1000 + i);
|
|
}
|
|
}
|
|
|
|
Serial1.print(dummy_data);
|
|
|
|
measure_adc_noise(boardADCPins[i]);
|
|
|
|
for (uint32 j = 0; j < BOARD_NR_PWM_PINS; j++) {
|
|
if (boardADCPins[i] != boardPWMPins[j]) {
|
|
pinMode(boardPWMPins[j], OUTPUT);
|
|
digitalWrite(boardPWMPins[j], LOW);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void cmd_everything(void) { // TODO
|
|
// Be sure to update cmd_print_help() if you implement this.
|
|
|
|
// print to usart
|
|
// print to usb
|
|
// toggle gpios
|
|
// enable pwm
|
|
Serial.println("Unimplemented.");
|
|
}
|
|
|
|
void cmd_serial1_serial3(void) {
|
|
HardwareSerial *serial_1_and_3[] = {&Serial1, &Serial3};
|
|
|
|
Serial.println("Testing 57600 baud on USART1 and USART3. "
|
|
"Press any key to stop.");
|
|
usart_baud_test(serial_1_and_3, 2, 57600);
|
|
Serial.read();
|
|
|
|
Serial.println("Testing 115200 baud on USART1 and USART3. "
|
|
"Press any key to stop.");
|
|
usart_baud_test(serial_1_and_3, 2, 115200);
|
|
Serial.read();
|
|
|
|
Serial.println("Testing 9600 baud on USART1 and USART3. "
|
|
"Press any key to stop.");
|
|
usart_baud_test(serial_1_and_3, 2, 9600);
|
|
Serial.read();
|
|
|
|
Serial.println("Resetting USART1 and USART3...");
|
|
Serial1.begin(BAUD);
|
|
Serial3.begin(BAUD);
|
|
}
|
|
|
|
void cmd_gpio_monitoring(void) {
|
|
Serial.println("Monitoring pin state changes. Press any key to stop.");
|
|
|
|
for (int i = 0; i < BOARD_NR_GPIO_PINS; i++) {
|
|
if (boardUsesPin(i))
|
|
continue;
|
|
pinMode(i, INPUT_PULLDOWN);
|
|
gpio_state[i] = (uint8)digitalRead(i);
|
|
}
|
|
|
|
while (!Serial.available()) {
|
|
for (int i = 0; i < BOARD_NR_GPIO_PINS; i++) {
|
|
if (boardUsesPin(i))
|
|
continue;
|
|
|
|
uint8 current_state = (uint8)digitalRead(i);
|
|
if (current_state != gpio_state[i]) {
|
|
Serial.print("State change on pin ");
|
|
Serial.print(i, DEC);
|
|
if (current_state) {
|
|
Serial.println(":\tHIGH");
|
|
} else {
|
|
Serial.println(":\tLOW");
|
|
}
|
|
gpio_state[i] = current_state;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (int i = 0; i < BOARD_NR_GPIO_PINS; i++) {
|
|
if (boardUsesPin(i))
|
|
continue;
|
|
pinMode(i, OUTPUT);
|
|
}
|
|
}
|
|
|
|
void cmd_sequential_adc_reads(void) {
|
|
Serial.print("Sequentially reading most ADC ports.");
|
|
Serial.println("Press any key for next port, or ESC to stop.");
|
|
|
|
for (uint32 i = 0; i < BOARD_NR_ADC_PINS; i++) {
|
|
if (boardUsesPin(i))
|
|
continue;
|
|
|
|
Serial.print("Reading pin ");
|
|
Serial.print(boardADCPins[i], DEC);
|
|
Serial.println("...");
|
|
pinMode(boardADCPins[i], INPUT_ANALOG);
|
|
while (!Serial.available()) {
|
|
int sample = analogRead(boardADCPins[i]);
|
|
Serial.print(boardADCPins[i], DEC);
|
|
Serial.print("\t");
|
|
Serial.print(sample, DEC);
|
|
Serial.print("\t");
|
|
Serial.print("|");
|
|
for (int j = 0; j < 4096; j += 100) {
|
|
if (sample >= j) {
|
|
Serial.print("#");
|
|
} else {
|
|
Serial.print(" ");
|
|
}
|
|
}
|
|
Serial.print("| ");
|
|
for (int j = 0; j < 12; j++) {
|
|
if (sample & (1 << (11 - j))) {
|
|
Serial.print("1");
|
|
} else {
|
|
Serial.print("0");
|
|
}
|
|
}
|
|
Serial.println("");
|
|
}
|
|
pinMode(boardADCPins[i], OUTPUT);
|
|
digitalWrite(boardADCPins[i], 0);
|
|
if (Serial.read() == ESC)
|
|
break;
|
|
}
|
|
}
|
|
|
|
bool test_single_pin_is_high(int high_pin, const char* err_msg) {
|
|
bool ok = true;
|
|
for (int i = 0; i < BOARD_NR_GPIO_PINS; i++) {
|
|
if (boardUsesPin(i)) continue;
|
|
|
|
if (digitalRead(i) == HIGH && i != high_pin) {
|
|
Serial.println();
|
|
Serial.print("\t*** FAILURE! pin ");
|
|
Serial.print(i, DEC);
|
|
Serial.print(' ');
|
|
Serial.println(err_msg);
|
|
ok = false;
|
|
}
|
|
}
|
|
return ok;
|
|
}
|
|
|
|
bool wait_for_low_transition(uint8 pin) {
|
|
uint32 start = millis();
|
|
while (millis() - start < 2000) {
|
|
if (digitalRead(pin) == LOW) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void cmd_gpio_qa(void) {
|
|
bool all_pins_ok = true;
|
|
const int not_a_pin = -1;
|
|
Serial.println("Doing QA testing for unused GPIO pins.");
|
|
|
|
for (int i = 0; i < BOARD_NR_GPIO_PINS; i++) {
|
|
if (boardUsesPin(i)) continue;
|
|
|
|
pinMode(i, INPUT);
|
|
}
|
|
|
|
Serial.println("Waiting to start.");
|
|
ASSERT(!boardUsesPin(0));
|
|
while (digitalRead(0) == LOW) continue;
|
|
|
|
for (int i = 0; i < BOARD_NR_GPIO_PINS; i++) {
|
|
if (boardUsesPin(i)) {
|
|
Serial.print("Skipping pin ");
|
|
Serial.println(i, DEC);
|
|
continue;
|
|
}
|
|
bool pin_ok = true;
|
|
Serial.print("Checking pin ");
|
|
Serial.print(i, DEC);
|
|
while (digitalRead(i) == LOW) continue;
|
|
|
|
pin_ok = pin_ok && test_single_pin_is_high(i, "is also HIGH");
|
|
|
|
if (!wait_for_low_transition(i)) {
|
|
Serial.println("Transition to low timed out; something is "
|
|
"very wrong. Aborting test.");
|
|
return;
|
|
}
|
|
|
|
pin_ok = pin_ok && test_single_pin_is_high(not_a_pin, "is still HIGH");
|
|
|
|
if (pin_ok) {
|
|
Serial.println(": ok");
|
|
}
|
|
|
|
all_pins_ok = all_pins_ok && pin_ok;
|
|
}
|
|
|
|
if (all_pins_ok) {
|
|
Serial.println("Finished; test passes.");
|
|
} else {
|
|
Serial.println("**** TEST FAILS *****");
|
|
}
|
|
|
|
for (int i = 0; i < BOARD_NR_GPIO_PINS; i++) {
|
|
if (boardUsesPin(i)) continue;
|
|
|
|
pinMode(i, OUTPUT);
|
|
digitalWrite(i, LOW);
|
|
gpio_state[i] = 0;
|
|
}
|
|
}
|
|
|
|
void cmd_sequential_gpio_writes(void) {
|
|
Serial.println("Sequentially toggling all unused pins. "
|
|
"Press any key for next pin, ESC to stop.");
|
|
|
|
for (uint32 i = 0; i < BOARD_NR_GPIO_PINS; i++) {
|
|
if (boardUsesPin(i))
|
|
continue;
|
|
|
|
Serial.print("Toggling pin ");
|
|
Serial.print((int)i, DEC);
|
|
Serial.println("...");
|
|
|
|
pinMode(i, OUTPUT);
|
|
do {
|
|
gpio_toggle_bit(PIN_MAP[i].gpio_device, PIN_MAP[i].gpio_bit);
|
|
} while (!Serial.available());
|
|
|
|
digitalWrite(i, LOW);
|
|
if (Serial.read() == ESC)
|
|
break;
|
|
}
|
|
}
|
|
|
|
void cmd_gpio_toggling(void) {
|
|
Serial.println("Toggling all unused pins simultaneously. "
|
|
"Press any key to stop.");
|
|
|
|
for (uint32 i = 0; i < BOARD_NR_GPIO_PINS; i++) {
|
|
if (boardUsesPin(i))
|
|
continue;
|
|
pinMode(i, OUTPUT);
|
|
}
|
|
|
|
while (!Serial.available()) {
|
|
for (uint32 i = 0; i < BOARD_NR_GPIO_PINS; i++) {
|
|
if (boardUsesPin(i))
|
|
continue;
|
|
gpio_toggle_bit(PIN_MAP[i].gpio_device, PIN_MAP[i].gpio_bit);
|
|
}
|
|
}
|
|
|
|
for (uint32 i = 0; i < BOARD_NR_GPIO_PINS; i++) {
|
|
if (boardUsesPin(i))
|
|
continue;
|
|
digitalWrite(i, LOW);
|
|
}
|
|
}
|
|
|
|
void cmd_sequential_pwm_test(void) {
|
|
Serial.println("Sequentially testing PWM on all unused pins. "
|
|
"Press any key for next pin, ESC to stop.");
|
|
|
|
for (uint32 i = 0; i < BOARD_NR_PWM_PINS; i++) {
|
|
if (boardUsesPin(i))
|
|
continue;
|
|
|
|
Serial.print("PWM out on header D");
|
|
Serial.print(boardPWMPins[i], DEC);
|
|
Serial.println("...");
|
|
pinMode(boardPWMPins[i], PWM);
|
|
pwmWrite(boardPWMPins[i], 16000);
|
|
|
|
while (!Serial.available()) {
|
|
delay(10);
|
|
}
|
|
|
|
pinMode(boardPWMPins[i], OUTPUT);
|
|
digitalWrite(boardPWMPins[i], 0);
|
|
if (Serial.read() == ESC)
|
|
break;
|
|
}
|
|
}
|
|
|
|
void cmd_servo_sweep(void) {
|
|
Serial.println("Testing all PWM headers with a servo sweep. "
|
|
"Press any key to stop.");
|
|
Serial.println();
|
|
|
|
disable_usarts();
|
|
init_all_timers(21);
|
|
|
|
for (uint32 i = 0; i < BOARD_NR_PWM_PINS; i++) {
|
|
if (boardUsesPin(i))
|
|
continue;
|
|
pinMode(boardPWMPins[i], PWM);
|
|
pwmWrite(boardPWMPins[i], 4000);
|
|
}
|
|
|
|
// 1.25ms = 4096counts = 0deg
|
|
// 1.50ms = 4915counts = 90deg
|
|
// 1.75ms = 5734counts = 180deg
|
|
int rate = 4096;
|
|
while (!Serial.available()) {
|
|
rate += 20;
|
|
if (rate > 5734)
|
|
rate = 4096;
|
|
for (uint32 i = 0; i < BOARD_NR_PWM_PINS; i++) {
|
|
if (boardUsesPin(i))
|
|
continue;
|
|
pwmWrite(boardPWMPins[i], rate);
|
|
}
|
|
delay(20);
|
|
}
|
|
|
|
for (uint32 i = 0; i < BOARD_NR_PWM_PINS; i++) {
|
|
if (boardUsesPin(i))
|
|
continue;
|
|
pinMode(boardPWMPins[i], OUTPUT);
|
|
}
|
|
init_all_timers(1);
|
|
enable_usarts();
|
|
}
|
|
|
|
void cmd_board_info(void) { // TODO print more information
|
|
Serial.println("Board information");
|
|
Serial.println("=================");
|
|
|
|
Serial.print("* Clock speed (cycles/us): ");
|
|
Serial.println(CYCLES_PER_MICROSECOND);
|
|
|
|
Serial.print("* 33: ");
|
|
Serial.println(33);
|
|
|
|
Serial.print("* BOARD_BUTTON_PIN: ");
|
|
Serial.println(BOARD_BUTTON_PIN);
|
|
|
|
Serial.print("* GPIO information (BOARD_NR_GPIO_PINS = ");
|
|
Serial.print(BOARD_NR_GPIO_PINS);
|
|
Serial.println("):");
|
|
print_board_array("ADC pins", boardADCPins, BOARD_NR_ADC_PINS);
|
|
print_board_array("PWM pins", boardPWMPins, BOARD_NR_PWM_PINS);
|
|
print_board_array("Used pins", boardUsedPins, BOARD_NR_USED_PINS);
|
|
}
|
|
|
|
// -- Helper functions --------------------------------------------------------
|
|
|
|
void measure_adc_noise(uint8 pin) {
|
|
uint16 data[100];
|
|
float mean = 0;
|
|
float delta = 0;
|
|
float M2 = 0;
|
|
pinMode(pin, INPUT_ANALOG);
|
|
|
|
// Variance algorithm from Welford, via Knuth, by way of Wikipedia:
|
|
// http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#On-line_algorithm
|
|
for (int i = 0; i < 100; i++) {
|
|
data[i] = analogRead(pin);
|
|
delta = data[i] - mean;
|
|
mean = mean + delta / (i + 1);
|
|
M2 = M2 + delta * (data[i] - mean);
|
|
}
|
|
|
|
Serial.print("header: D");
|
|
Serial.print(pin, DEC);
|
|
Serial.print("\tn: ");
|
|
Serial.print(100, DEC);
|
|
Serial.print("\tmean: ");
|
|
Serial.print(mean);
|
|
Serial.print("\tvariance: ");
|
|
Serial.println(M2 / 99.0);
|
|
pinMode(pin, OUTPUT);
|
|
}
|
|
|
|
void fast_gpio(int maple_pin) {
|
|
gpio_dev *dev = PIN_MAP[maple_pin].gpio_device;
|
|
uint32 bit = PIN_MAP[maple_pin].gpio_bit;
|
|
|
|
gpio_write_bit(dev, bit, 1);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
gpio_toggle_bit(dev, bit);
|
|
}
|
|
|
|
void usart_baud_test(HardwareSerial **serials, int n, unsigned baud) {
|
|
for (int i = 0; i < n; i++) {
|
|
serials[i]->begin(baud);
|
|
}
|
|
while (!Serial.available()) {
|
|
for (int i = 0; i < n; i++) {
|
|
serials[i]->println(dummy_data);
|
|
if (serials[i]->available()) {
|
|
serials[i]->println(serials[i]->read());
|
|
delay(1000);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
static uint16 init_all_timers_prescale = 0;
|
|
|
|
static void set_prescale(timer_dev *dev) {
|
|
timer_set_prescaler(dev, init_all_timers_prescale);
|
|
}
|
|
|
|
void init_all_timers(uint16 prescale) {
|
|
init_all_timers_prescale = prescale;
|
|
timer_foreach(set_prescale);
|
|
}
|
|
|
|
void enable_usarts(void) {
|
|
// FIXME generalize after USART refactor
|
|
Serial1.begin(BAUD);
|
|
Serial2.begin(BAUD);
|
|
Serial3.begin(BAUD);
|
|
}
|
|
|
|
void disable_usarts(void) {
|
|
// FIXME generalize after USART refactor
|
|
Serial1.end();
|
|
Serial2.end();
|
|
Serial3.end();
|
|
}
|
|
|
|
void print_board_array(const char* msg, const uint8 arr[], int len) {
|
|
Serial.print("\t");
|
|
Serial.print(msg);
|
|
Serial.print(" (");
|
|
Serial.print(len);
|
|
Serial.print("): ");
|
|
for (int i = 0; i < len; i++) {
|
|
Serial.print(arr[i], DEC);
|
|
if (i < len - 1) Serial.print(", ");
|
|
}
|
|
Serial.println();
|
|
}
|