From 404a2892b7b08b6d0222402309065967c773d3a5 Mon Sep 17 00:00:00 2001 From: Marti Bolivar Date: Sun, 30 Jan 2011 21:48:54 -0500 Subject: Ported examples/test-session.cpp to work on Mini --- examples/test-session.cpp | 953 +++++++++++++++++++++++++--------------------- 1 file changed, 515 insertions(+), 438 deletions(-) (limited to 'examples') diff --git a/examples/test-session.cpp b/examples/test-session.cpp index bfc1e58..d856067 100644 --- a/examples/test-session.cpp +++ b/examples/test-session.cpp @@ -7,46 +7,73 @@ #include "wirish.h" -#define LED_PIN 13 -#define PWM_PIN 2 +#define LED_PIN BOARD_LED_PIN +#define PWM_PIN 3 // choose your weapon #define COMM SerialUSB //#define COMM Serial2 +//#define COMM Serial3 -uint8 input = 0; -uint8 tiddle = 0; -int toggle = 0; int rate = 0; -int sample = 0; -// read these off maple board rev3 -// note that 38 is just a button and 39+ aren't functional as of 04/22/2010 -const uint8 pwm_pins[] = {0,1,2,3,5,6,7,8,9,11,12,14,24,25,27,28}; -const uint8 adc_pins[] = {0,1,2,10,11,12,13,15,16,17,18,19,20,27,28}; -#define NUM_GPIO 44 // 44 is the MAX -uint8 gpio_state[NUM_GPIO]; +#if defined(BOARD_maple) +const uint8 pwm_pins[] = + {0, 1, 2, 3, 5, 6, 7, 8, 9, 11, 12, 14, 24, 25, 27, 28}; +const uint8 adc_pins[] = + {0, 1, 2, 10, 11, 12, 13, 15, 16, 17, 18, 19, 20, 27, 28}; -#define DUMMY_DAT "qwertyuiopasdfghjklzxcvbnmmmmmm,./1234567890-=qwertyuiopasdfghjklzxcvbnm,./1234567890" +#elif defined(BOARD_maple_mini) +const uint8 pwm_pins[] = {3, 4, 5, 8, 9, 10, 11, 15, 16, 25, 26, 27}; +const uint8 adc_pins[] = {3, 4, 5, 6, 7, 8, 9, 10, 11, 33}; // NB: 33 is LED -void print_help(void); -void do_noise(uint8 pin); -void do_everything(void); -void do_fast_gpio(void); +#elif defined(BOARD_maple_native) // TODO maple native +#error "No Maple Native support here yet" + +#else +#error "Board type has not been selected correctly" + +#endif + +uint8 gpio_state[NR_GPIO_PINS]; + +#define DUMMY_DAT ("qwertyuiopasdfghjklzxcvbnmmmmmm,./1234567890-=" \ + "qwertyuiopasdfghjklzxcvbnm,./1234567890") + +#define ESC ((uint8)27) + +void cmd_print_help(void); +void cmd_adc_stats(void); +void cmd_stressful_adc_stats(void); +void cmd_everything(void); +void cmd_serial1_serial3(void); +void cmd_gpio_monitoring(void); +void cmd_sequential_adc_reads(void); +void cmd_gpio_qa(void); +void cmd_sequential_gpio_writes(void); +void cmd_gpio_toggling(void); +void cmd_sequential_pwm_test(void); +void cmd_pwm_sweep(void); +void cmd_servo_sweep(void); + +void measure_adc_noise(uint8 pin); +void fast_gpio(int pin); +void do_serials(HardwareSerial **serials, int n, unsigned baud); +void init_all_timers(uint16 prescale); void setup() { - /* Set up the LED to blink */ - pinMode(LED_PIN, OUTPUT); + // Set up the LED to blink + pinMode(BOARD_LED_PIN, OUTPUT); - /* Start up the serial ports */ + // Start up the serial ports Serial1.begin(9600); Serial2.begin(9600); Serial3.begin(9600); - /* Send a message out over COMM interface */ + // Send a message out over COMM interface COMM.println(" "); COMM.println(" __ __ _ _"); - COMM.println(" | \\/ | __ _ _ __ | | ___| |"); + COMM.println(" | \\/ | __ _ _ __ | | ___| |"); COMM.println(" | |\\/| |/ _` | '_ \\| |/ _ \\ |"); COMM.println(" | | | | (_| | |_) | | __/_|"); COMM.println(" |_| |_|\\__,_| .__/|_|\\___(_)"); @@ -55,409 +82,169 @@ void setup() { COMM.println(""); COMM.println(""); COMM.println("Maple interactive test program (type '?' for help)"); - COMM.println("------------------------------------------------------------"); + COMM.println("----------------------------------------------------------"); COMM.print("> "); } -void loop() { - toggle ^= 1; - digitalWrite(LED_PIN, toggle); +void loop () { + toggleLED(); delay(100); while(COMM.available()) { - input = COMM.read(); + uint8 input = COMM.read(); COMM.println(input); + switch(input) { - case 13: // Carriage Return - break; - case 32: // ' ' - COMM.println("spacebar, nice!"); - break; - case 63: // '?' - case 104: // 'h' - print_help(); - break; - case 117: // 'u' - SerialUSB.println("Hello World!"); - break; - case 119: // 'w' - Serial1.println("Hello World!"); - Serial2.println("Hello World!"); - Serial3.println("Hello World!"); - break; - case 109: // 'm' - COMM.println("Testing 57600 baud on USART1 and USART3. Press enter."); - Serial1.begin(57600); - Serial3.begin(57600); - while(!COMM.available()) { - Serial1.println(DUMMY_DAT); - Serial3.println(DUMMY_DAT); - if(Serial1.available()) { - Serial1.println(Serial1.read()); - delay(1000); - } - if(Serial3.available()) { - Serial3.println(Serial3.read()); - delay(1000); - } - } - COMM.read(); - COMM.println("Testing 115200 baud on USART1 and USART3. Press enter."); - Serial1.begin(115200); - Serial3.begin(115200); - while(!COMM.available()) { - Serial1.println(DUMMY_DAT); - Serial3.println(DUMMY_DAT); - if(Serial1.available()) { - Serial1.println(Serial1.read()); - delay(1000); - } - if(Serial3.available()) { - Serial3.println(Serial3.read()); - delay(1000); - } - } - COMM.read(); - COMM.println("Testing 9600 baud on USART1 and USART3. Press enter."); - Serial1.begin(9600); - Serial3.begin(9600); - while(!COMM.available()) { - Serial1.println(DUMMY_DAT); - Serial3.println(DUMMY_DAT); - if(Serial1.available()) { - Serial1.println(Serial1.read()); - delay(1000); - } - if(Serial3.available()) { - Serial3.println(Serial3.read()); - delay(1000); - } - } - COMM.read(); - COMM.println("Resetting USART1 and USART3..."); - Serial1.begin(9600); - Serial3.begin(9600); - break; - case 46: // '.' - while(!COMM.available()) { - Serial1.print("."); - Serial2.print("."); - Serial3.print("."); - SerialUSB.print("."); - } - break; - case 110: // 'n' - COMM.println("Taking ADC noise stats..."); - // turn off LED - digitalWrite(LED_PIN, 0); - // make sure to skip the TX/RX headers - for(uint32 i = 2; i 65500) rate = 0; - for(uint32 i = 2; i 5734) rate = 4096; - for(uint32 i = 2; i= j) COMM.print("#"); - else COMM.print(" "); - } - COMM.print("| "); - for(int j = 0; j<12; j++) { - if(sample & (1 << (11-j))) COMM.print("1"); - else COMM.print("0"); - } - COMM.println(""); - } - pinMode(adc_pins[i], OUTPUT); - digitalWrite(adc_pins[i], 0); - if((uint8)COMM.read() == (uint8)27) break; // ESC - } - break; - case 43: // '+' - COMM.println("Doing QA testing for 37 GPIO pins..."); - // turn off LED - digitalWrite(LED_PIN, 0); - for(int i = 0; i "); } } -void print_help(void) { +void cmd_print_help(void) { COMM.println(""); //COMM.println("Command Listing\t(# means any digit)"); COMM.println("Command Listing"); @@ -469,28 +256,29 @@ void print_help(void) { COMM.println("\ta: show realtime ADC info"); COMM.println("\t.: echo '.' until new input"); COMM.println("\tu: print Hello World on USB"); - COMM.println("\t_: try to do as little as possible for a couple seconds (delay)"); + COMM.println("\t_: do as little as possible for a couple seconds (delay)"); COMM.println("\tp: test all PWM channels sequentially"); COMM.println("\tW: dump data as fast as possible on all 3 USARTS"); COMM.println("\tU: dump data as fast as possible on USB"); COMM.println("\tg: toggle all GPIOs sequentialy"); COMM.println("\tG: toggle all GPIOs at the same time"); COMM.println("\tf: toggle GPIO D4 as fast as possible in bursts"); - COMM.println("\tP: test all PWM channels at the same time with different speeds/sweeps"); - COMM.println("\tr: read in GPIO status changes and print them in realtime"); - COMM.println("\ts: output a sweeping SERVO PWM on all PWM channels"); - COMM.println("\tm: output serial data dumps on USART1 and USART3 with various rates"); + COMM.println("\tP: simultaneously test all PWM channels with different " + "speeds/sweeps"); + COMM.println("\tr: Monitor and print GPIO status changes"); + COMM.println("\ts: output a sweeping servo PWM on all PWM channels"); + COMM.println("\tm: output data on USART1 and USART3 with various rates"); COMM.println("\t+: test shield mode (for QA, will disrupt Serial2!)"); COMM.println("Unimplemented:"); COMM.println("\te: do everything all at once until new input"); - COMM.println("\tt: output a 1khz squarewave on all GPIOs as well as possible"); - COMM.println("\tT: output a 1hz squarewave on all GPIOs as well as possible"); + COMM.println("\tt: output a 1khz squarewave on all GPIOs"); + COMM.println("\tT: output a 1hz squarewave on all GPIOs"); COMM.println("\ti: print out a bunch of info about system state"); COMM.println("\tI: print out status of all headers"); } -void do_noise(uint8 pin) { // TODO +void measure_adc_noise(uint8 pin) { // TODO uint16 data[100]; float mean = 0; //float stddev = 0; @@ -512,12 +300,43 @@ void do_noise(uint8 pin) { // TODO COMM.print("header: D"); COMM.print(pin,DEC); COMM.print("\tn: "); COMM.print(100,DEC); COMM.print("\tmean: "); COMM.print(mean); - COMM.print("\tvar: "); COMM.println(M2/99.0); + COMM.print("\tvariance: "); COMM.println(M2/99.0); pinMode(pin, OUTPUT); } -void do_everything(void) { // TODO - // TODO +void cmd_adc_stats(void) { + COMM.println("Taking ADC noise stats..."); + digitalWrite(BOARD_LED_PIN, 0); + for(uint32 i = 0; ibegin(9600); + } + while (!COMM.available()) { + for (int i = 0; i < n; i++) { + serials[i]->println(DUMMY_DAT); + if (serials[i]->available()) { + serials[i]->println(serials[i]->read()); + delay(1000); + } + } + } +} + +void cmd_gpio_monitoring(void) { + COMM.println("Monitoring GPIO read state changes. Press any key."); + digitalWrite(BOARD_LED_PIN, 0); + // make sure to skip the TX/RX headers + for(int i = 2; i= j) COMM.print("#"); + else COMM.print(" "); + } + COMM.print("| "); + for(int j = 0; j<12; j++) { + if(sample & (1 << (11-j))) COMM.print("1"); + else COMM.print("0"); + } + COMM.println(""); + } + pinMode(adc_pins[i], OUTPUT); + digitalWrite(adc_pins[i], 0); + if((uint8)COMM.read() == ESC) break; + } +} + +void cmd_gpio_qa(void) { + COMM.println("Doing QA testing for most GPIO pins..."); + digitalWrite(BOARD_LED_PIN, 0); + for(int i = 0; i 65500) rate = 0; + for(uint32 i = 2; i 5734) rate = 4096; + for(uint32 i = 2; i= 4 + timer_init(TIMER4, prescale); +#elif NR_TIMERS >= 8 // TODO test this on maple native + timer_init(TIMER5, prescale); + timer_init(TIMER6, prescale); + timer_init(TIMER7, prescale); + timer_init(TIMER8, prescale); +#endif +} + + // Force init to be called *first*, i.e. before static object allocation. // Otherwise, statically allocated object that need libmaple may fail. - __attribute__(( constructor )) void premain() { +__attribute__(( constructor )) void premain() { init(); } -- cgit v1.2.3