Extended.config.h 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /* ---------------------------------------------------------------------------------------------------------------------------------
  2. * Extended configuration for OnStepX INFREQUENTLY USED options
  3. *
  4. * For more information on setting OnStep up see http://www.stellarjourney.com/index.php?r=site/equipment_onstep
  5. * and join the OnStep Groups.io at https://groups.io/g/onstep
  6. *
  7. * *** Read the compiler warnings and errors, they are there to help guard against invalid configurations ***
  8. *
  9. * ---------------------------------------------------------------------------------------------------------------------------------
  10. * ADJUST THE FOLLOWING TO CONFIGURE YOUR CONTROLLER FEATURES ----------------------------------------------------------------------
  11. * <-Req'd = always must set, <-Often = usually must set, Option = optional, Adjust = adjust as req'd, Infreq = infrequently changed
  12. */
  13. // Parameter Name Value Default Notes Hint
  14. // =================================================================================================================================
  15. // CONTROLLER ======================================================================================================================
  16. // DEBUG ---------------------------------------------------------------------------------------------------------------------------
  17. // Enables additional debugging and/or status messages on the specified SERIAL_DEBUG port (be sure to disable when done!)
  18. // Note: The SERIAL_DEBUG port is often (almost always) attached to the same SERIAL_A port so it cannot be used for normal
  19. // LX200 protocol communications. If this is the case set both to the same (faster) baud rate specified below.
  20. #define DEBUG VERBOSE // OFF, Use ON for background error messages only, use VERBOSE for all Infreq
  21. // error and status messages, use CONSOLE for VT100 debug console,
  22. // or use PROFILER for VT100 task profiler.
  23. #define DEBUG_SERVO OFF // OFF, n. Where n=1 to 9 as the designated axis for logging servo activity. Option
  24. #define DEBUG_ECHO_COMMANDS OFF // OFF, Use ON or ERRORS_ONLY to log commands to the debug serial port. Option
  25. #define SERIAL_DEBUG Serial // Serial, Use any available h/w serial port. Serial1 or Serial2, etc. Option
  26. #define SERIAL_DEBUG_BAUD 230400 // 230400, n. Where n=9600,19200,57600,115200,230400,460800 (common baud rates.) Option
  27. // NON-VOLATILE STORAGE ------------------------------------------------------------------------------------------------------------
  28. #define NV_WIPE OFF // OFF, Causes the defaults to be written back into NV (FLASH,EEPROM,etc.) Infreq
  29. // *** IMPORTANT: ENABLE THIS OPTION THEN UPLOAD, WAIT A MINUTE ***
  30. // Warning ---> // *** OR TWO THEN SET THIS OPTION TO OFF AND UPLOAD AGAIN. ***
  31. // *** LEAVING THIS OPTION ENABLED CAN CAUSE EXCESSIVE NV ***
  32. // *** WEAR AND DAMAGE THE MICROCONTROLLER NV SUBSYSTEM !!! ***
  33. // ---------------------------------------------------------------------------------------------------------------------------------