File tree Expand file tree Collapse file tree 4 files changed +10
-1
lines changed Expand file tree Collapse file tree 4 files changed +10
-1
lines changed Original file line number Diff line number Diff line change 9393 (done) Add support for exFAT. Requires v2.0.6 of Bill Greiman's SdFat library. https://github.com/sparkfun/OpenLog_Artemis/issues/34
9494 (done) Add minimum awake time: https://github.com/sparkfun/OpenLog_Artemis/issues/83
9595 (done) Add support for the Pulse Oximeter: https://github.com/sparkfun/OpenLog_Artemis/issues/81
96- (won't do) Add support for the Qwiic Button. The QB uses clock-stretching and the Artemis really doesn't enjoy that...
96+ (won't do? ) Add support for the Qwiic Button. The QB uses clock-stretching and the Artemis really doesn't enjoy that...
9797*/
9898
9999const int FIRMWARE_VERSION_MAJOR = 1 ;
Original file line number Diff line number Diff line change @@ -416,6 +416,15 @@ void menuAttachedDevices()
416416 settings.useGPIO32ForStopLogging = false ;
417417 detachInterrupt (digitalPinToInterrupt (PIN_STOP_LOGGING)); // Disable the interrupt
418418 }
419+
420+ recordSystemSettings (); // Record the new settings to EEPROM and config file now in case the user resets before exiting the menus
421+
422+ if (detectQwiicDevices () == true ) // Detect the oximeter
423+ {
424+ beginQwiicDevices (); // Begin() each device in the node list
425+ configureQwiicDevices (); // Apply config settings to each device in the node list
426+ recordDeviceSettingsToFile (); // Record the current devices settings to device config file now in case the user resets before exiting the menus
427+ }
419428 }
420429 else
421430 SerialPrintln (F (" \" Detect Bio Sensor Pulse Oximeter\" aborted" ));
You can’t perform that action at this time.
0 commit comments