X-Git-Url: https://git.defcon.no/?a=blobdiff_plain;ds=sidebyside;f=source%2FRCTXDuino%2FRCTXDuino.pde;h=ebe62ad503afde00aea28315d61861a35b48b52e;hb=9553d62397f79611e4d4f96cf9f224e4193038e3;hp=b6c8d2651a2d36c2adb035054d5e57f0fc942cd9;hpb=1e52e2f77de48428742a933bc02927e3afc9d012;p=rctxduino diff --git a/source/RCTXDuino/RCTXDuino.pde b/source/RCTXDuino/RCTXDuino.pde index b6c8d26..ebe62ad 100644 --- a/source/RCTXDuino/RCTXDuino.pde +++ b/source/RCTXDuino/RCTXDuino.pde @@ -1,8 +1,45 @@ #include #include +#include + +// Undefine this whenever a "release" or "flight-test" build is made. +// Defining DEBUG sets some crazy values for things like battery warning, +// and includes a whole bunch of debugging-related code ... +#define DEBUG 1 #define MAX_INPUTS 8 +// Update this _every_ time a change in datastructures that +// can/will ber written to EEPROM is done. EEPROM data is +// read/written torectly into/from the data structures using +// pointers, so every time a data-set change occurs, the EEPROM +// format changes as well.. +#define EEPROM_VERSION 7 + +// Some data is stored in fixed locations, e.g.: +// * The EEPROM version number for the stored data (loc 0) +// * The selected model configuration number (loc 1) +// * (add any other fixed-loc's here for doc-purpose) +// This means that any pointer-math-operations need a BASE +// adress to start calc'ing from. This is defined as: +#define EE_BASE_ADDR 10 + +// Having to repeat tedious base-address-calculations for the +// start of model data should be unnessecary. Plus, updating +// what data is stored before the models will mean that each +// of those calculations must be updated. A better approach is +// to define the calculation in a define! +// NOTE: If new data is added in front of the model data, +// this define must be updated! +#define EE_MDL_BASE_ADDR (EE_BASE_ADDR+(sizeof(input_cal_t)+ 10)) + +// Just as a safety-precaution, update/change this if a chip with +// a different internal EEPROM size is used. Atmega328p has 1024 bytes. +#define INT_EEPROM_SIZE 1024 + +#define MAX_MODELS 4 // Nice and random number.. + + // --------------- ADC related stuffs.... -------------------- struct input_cal_t // Struct type for input calibration values @@ -17,6 +54,7 @@ struct model_t { int channels; // How many channels should PPM generate for this model ... float stick[8]; // The (potentially recalc'ed) value of stick/input channel. + int raw[8]; boolean rev[8]; int dr[8]; // The Dual-rate array uses magic numbers :P /* dr[0] = Input channel #1 of 2 for D/R switch #1. 0 means off, 1-4 valid values. @@ -30,6 +68,7 @@ struct model_t */ }; volatile model_t model; +unsigned char current_model; // Using uchar to spend a single byte of mem.. // ----------------- Display related stuffs -------------------- LiquidCrystal lcd( 12, 11, 10, 6, 7, 8, 9); @@ -39,9 +78,6 @@ LiquidCrystal lcd( 12, 11, 10, 6, 7, 8, 9); // The PPM generation is handled by Timer0 interrupts, and needs // all modifiable variables to be global and volatile... -//int max_channels = 6; // How many channels should PPM generate ... -// Moved to model_t struct... - volatile long sum = 0; // Frame-time spent so far volatile int cchannel = 0; // Current channnel volatile bool do_channel = true; // Is next operation a channel or a separator @@ -52,10 +88,10 @@ volatile bool do_channel = true; // Is next operation a channel or a sepa // The timing here (and/or in the ISR) needs to be tweaked to provide valid // RC PPM signals accepted by standard RC RX'es and the Microcopter... -#define framelength 21500 // Max length of frame -#define seplength 400 // Lenght of a channel separator -#define chmax 1700 // Max lenght of channel pulse -#define chmin 600 // Min length of channel +#define framelength 21000 // Max length of frame +#define seplength 300 // Lenght of a channel separator +#define chmax 1600 // Max lenght of channel pulse +#define chmin 495 // Min length of channel #define chwidht (chmax - chmin)// Useable time of channel pulse // ----------------- Menu/IU related stuffs -------------------- @@ -74,12 +110,21 @@ volatile bool do_channel = true; // Is next operation a channel or a sepa // Voltage sense pin is connected to a 1/3'd voltage divider. #define BATTERY_CONV (10 * 3 * (5.0f/1024.0f)) + +#ifdef DEBUG +// The following values are for DEBUGGING ONLY!! +#define BATTERY_LOW 92 +#define BATTERY_CRITICAL 0 +#else #define BATTERY_LOW 92 +#define BATTERY_CRITICAL 92 +#endif enum { VALUES, BATTERY, TIMER, + CURMODEL, MENU } displaystate; @@ -89,7 +134,7 @@ enum { INVERTS, DUALRATES, EXPOS, // Some radios have "drawn curves", i.e. loopup tables stored in external EEPROM ... - DEBUG, + DEBUG_DUMP, SAVE } menu_mainstate; @@ -113,11 +158,12 @@ struct clock_timer_t boolean running; } clock_timer; +#ifdef DEBUG // ----------------- DEBUG-STUFF -------------------- unsigned long prev_loop_time; unsigned long avg_loop_time; unsigned long t; - +#endif // ---------- CODE! ----------------------------------- @@ -136,16 +182,9 @@ void setup(){ Serial.begin(9600); Serial.println("Starting...."); delay(500); + + model_defaults(); read_settings(); - scan_keys(); - if ( keys[KEY_UP]) - calibrate(); - - pinMode(A5, OUTPUT); // PPM output pin - do_channel = false; - set_timer( seplength ); - Timer1.initialize(framelength); - Timer1.attachInterrupt(ISR_timer); displaystate = VALUES; @@ -154,37 +193,54 @@ void setup(){ // Unfortunately the interrupt mode is unusable in this scenario, but digital I/O works :P pinMode(A2, INPUT); digitalWrite(A2, HIGH); + scan_keys(); + if ( !keys[KEY_UP]) + calibrate(); +#ifdef DEBUG // Debugging: how long does the main loop take on avg... t = micros(); avg_loop_time = t; prev_loop_time = t; +#endif + + // Initializing the stopwatch timer/clock values... + clock_timer = (clock_timer_t){0, 0, 0, false}; + + pinMode(A5, OUTPUT); // PPM output pin + do_channel = false; + set_timer( seplength ); + Timer1.initialize(framelength); + Timer1.attachInterrupt(ISR_timer); + +} - // Setting this here to be sure I do not forget to init' it.... - // These initializations should be done by read_settings from eeprom, - // and this "default model values" should probably be moved - // out to a section of read_settings when handling "new model", or - // to a separate model_defaults function... +void model_defaults( void ) +{ + // This function provides default values for model data + // that is not a result of stick input, or in other words: + // provides defautls for all user-configurable model options. + + // Remember to update this when a new option/element is added + // to the model_t struct (preferably before implementing the + // menu code that sets those options ...) + + // This is used when a user wants a new, blank model, a reset + // of a configured model, and (most important) when EEPROM + // data format changes. + // NOTE: This means that stored model conficuration is reset + // to defaults when the EEPROM version/format changes. model.channels = 8; model.rev[0] = model.rev[1] = model.rev[2] = model.rev[3] = model.rev[4] = model.rev[5] = model.rev[6] = model.rev[7] = false; model.dr[0] = model.dr[1] = model.dr[2] = model.dr[3] = 0; model.dr[4] = model.dr[5] = model.dr[6] = model.dr[7] = 100; - // Initializing the stopwatch timer/clock values... - clock_timer = (clock_timer_t){0, 0, 0, false}; } // ---------- Arduino main loop ----------------------- -void loop () { - - // Determine if the UI needs to run... - boolean disp; - if ( millis() - last > UI_INTERVAL ) { - last = millis(); - disp = true; - } - else disp = false; +void loop () +{ process_inputs(); @@ -192,13 +248,18 @@ void loop () { battery_val = analogRead(1) * BATTERY_CONV; if ( battery_val < BATTERY_LOW ) { digitalWrite(13, 1); // Simulate alarm :P + } + if ( battery_val < BATTERY_CRITICAL ) { displaystate = BATTERY; } - if ( disp ) - { + if ( millis() - last > UI_INTERVAL ) + { + last = millis(); ui_handler(); } + +#ifdef DEBUG if ( displaystate != MENU ) { // Debugging: how long does the main loop take on avg, @@ -207,6 +268,7 @@ void loop () { avg_loop_time = ( t - prev_loop_time + avg_loop_time ) / 2; prev_loop_time = t; } +#endif // Whoa! Slow down partner! Let everything settle down before proceeding. delay(5); @@ -250,8 +312,7 @@ void mplx_select(int pin) void calibrate() { - int i, r0, r1, r2, adc_in; - int calcount = 0; + int i, adc_in; int num_calibrations = 200; lcd.clear(); @@ -260,13 +321,15 @@ void calibrate() lcd.print("their extremes.."); Serial.print("Calibration. Move all controls to their extremes."); - for (i=0; i< MAX_INPUTS; i++) { + for (i=0; i