* Starting GUI render refactor to be more immediate mode Update TemperatureAdjust.cpp . Cleanup Soldering Sleep SolderingProfiles Soldering Rework Rough pass GUI Temp Adjust Cleanup old OperatingMode Debug Menu * Update TemperatureAdjust.cpp * Roughing some transition work * Fixup! Hook in the init starter helper * Better home screen button handler * FIXUP! Fix typo's . * Update SettingsMenu.cpp * More settings rework * More settings rendering * Fixup * Transitions Update SolderingProfile.cpp Hook in transistions * Update TemperatureAdjust.cpp * Update push.yml * Add auto-repeat to settings menu * Miniware: Use IT for I2C writes * Update USBPDDebug_HUSB238.cpp * Force write screen on side animation cancel . * Refactor moving down the settings list * Update settingsGUI.cpp * Update I2C_Wrapper.cpp * Update OLED.cpp * Rework button handling * Fix PD debug at boot * Fixup not showing right menu options * silence some warnings * Style cleanup * Fkit use bit-bang I2C for Miniware * Update GUIRendering.md * Fixup transition on enter soldering mode * Save Settings * Fixes for some animations not running Dont bail on animations if keypress is still held * Fixup settings acceleration * OLED Up animation * Link up/down on debug meny * Make all accelerometers I2C bus aware Update accelerometers_common.h * Make I2C mag optional * Miniware -> Only Bit-Bang I2C * Fixup for scrollbar FIXUP! Debug menu returns to home screen FIXUP! Up oled animation Fix temp exit * Settings menu -> Both buttons return a menu layer * Merge fixup * Update BMA223.cpp * Re-Enable OLED sleep * Save Setting on temp adjust exit * WiP on startup mode * Some autostart working * Add hibernation mode & more autostart fixes * If cant CJC; go to startup * Hibernate in sleep * Cleanup scroll indicator * FIXUP! Ensure startup warnings are linked in * FIXUP! Ensure we render out temp change before timing out * Ensure 100ms delay between CJC samples * Fix not re-calculating menu length on entering menu * Implement NegotiationinProgress for USB-PD * Mask heating until PD finishes negotiation * Fixup staying in hibernate correctly * Warning timeout * Show reset settings warning * Correctly compensate help text start time * Update GUIThread.cpp * Update USBPD.cpp * . * Fixup sleep time * Update printSleepCountdown.cpp * replacing countdown with big plus while in boost mode * bringing back the + 1 since it was missing when not in boost mode * Bail on USB-PD check after 3 seconds incase of DC source * Fix hibernate * Update PIDThread.cpp * did center plus symbol (boost mode) * Big refactor to not make settings increment handler handle the "is last item" return * Fixup boot logo * Fix flashing * Fixup recalculate the menu length on long hold * Fixup missing menu entries * Fix junk left on screen after user confirmation * Re-order button handler to use custom, then default order to allow setting associated setting * Attach setting for settings using custom handler * Fix swap +/- keys * Fix boost temp * Implement last menu option for Language selector * Wait for init before CJC runs * Check last setting via increment value * Update BSP.cpp * removed = from >= Otherwise incrementing would stop and the scroll bar would already flash at the second to last value. * (Hacky) Fix for Settings reset --------- Co-authored-by: discip <53649486+discip@users.noreply.github.com>
88 lines
3.6 KiB
C
88 lines
3.6 KiB
C
#ifndef OPERATING_MODES_H_
|
|
#define OPERATING_MODES_H_
|
|
|
|
extern "C" {
|
|
#include "FreeRTOSConfig.h"
|
|
}
|
|
#include "Buttons.hpp"
|
|
#include "OLED.hpp"
|
|
#include "OperatingModeUtilities.h"
|
|
#include "Settings.h"
|
|
#include "TipThermoModel.h"
|
|
#include "Translation.h"
|
|
#include "Types.h"
|
|
#include "cmsis_os.h"
|
|
#include "configuration.h"
|
|
#include "history.hpp"
|
|
#include "main.hpp"
|
|
#include "power.hpp"
|
|
#include "settingsGUI.hpp"
|
|
#include "stdlib.h"
|
|
#include "string.h"
|
|
#ifdef POW_PD
|
|
#include "USBPD.h"
|
|
#include "pd.h"
|
|
#endif
|
|
|
|
enum class OperatingMode {
|
|
StartupLogo = 0, // Showing the startup logo
|
|
CJCCalibration, // Cold Junction Calibration
|
|
StartupWarnings, // Startup checks and warnings
|
|
InitialisationDone, // Special state we use just before we to home screen at first startup. Allows jumping to extra startup states
|
|
HomeScreen, // Home/Idle screen that is the main launchpad to other modes
|
|
Soldering, // Main soldering operating mode
|
|
SolderingProfile, // Soldering by following a profile, used for reflow for example
|
|
Sleeping, // Sleep state holds iron at lower sleep temp
|
|
Hibernating, // Like sleeping but keeps heater fully off until woken
|
|
SettingsMenu, // Settings Menu
|
|
DebugMenuReadout, // Debug metrics
|
|
TemperatureAdjust, // Set point temperature adjustment
|
|
UsbPDDebug, // USB PD debugging information
|
|
ThermalRunaway, // Thermal Runaway warning state.
|
|
};
|
|
|
|
enum class TransitionAnimation {
|
|
None = 0,
|
|
Right = 1,
|
|
Left = 2,
|
|
Down = 3,
|
|
Up = 4,
|
|
};
|
|
|
|
// Generic context struct used for gui functions to be able to retain state
|
|
struct guiContext {
|
|
TickType_t viewEnterTime; // Set to ticks when this view state was first entered
|
|
OperatingMode previousMode;
|
|
TransitionAnimation transitionMode;
|
|
// Below is scratch state, this is retained over re-draws but blown away on state change
|
|
struct scratch {
|
|
uint16_t state1; // 16 bit state scratch
|
|
uint16_t state2; // 16 bit state scratch
|
|
uint32_t state3; // 32 bit state scratch
|
|
uint32_t state4; // 32 bit state scratch
|
|
uint16_t state5; // 16 bit state scratch
|
|
uint16_t state6; // 16 bit state scratch
|
|
|
|
} scratch_state;
|
|
};
|
|
|
|
// Main functions
|
|
OperatingMode gui_SolderingSleepingMode(const ButtonState buttons, guiContext *cxt); // Sleep mode
|
|
OperatingMode gui_solderingMode(const ButtonState buttons, guiContext *cxt); // Main mode for hot pointy tool
|
|
OperatingMode gui_solderingTempAdjust(const ButtonState buttons, guiContext *cxt); // For adjusting the setpoint temperature of the iron
|
|
OperatingMode drawHomeScreen(const ButtonState buttons, guiContext *cxt); // IDLE / Home screen
|
|
OperatingMode gui_SettingsMenu(const ButtonState buttons, guiContext *cxt); //
|
|
|
|
OperatingMode gui_solderingProfileMode(const ButtonState buttons, guiContext *cxt); // Profile mode for hot likely-not-so-pointy tool
|
|
OperatingMode performCJCC(const ButtonState buttons, guiContext *cxt); // Used to calibrate the Cold Junction offset
|
|
OperatingMode showDebugMenu(const ButtonState buttons, guiContext *cxt); // Debugging values
|
|
OperatingMode showPDDebug(const ButtonState buttons, guiContext *cxt); // Debugging menu that shows PD adaptor info
|
|
OperatingMode showWarnings(const ButtonState buttons, guiContext *cxt); // Shows user warnings if required
|
|
|
|
// Common helpers
|
|
int8_t getPowerSourceNumber(void); // Returns number ID of power source
|
|
void renderHomeScreenAssets(void); // Called to act as start delay and used to render out flipped images for home screen graphics
|
|
|
|
extern bool heaterThermalRunaway;
|
|
#endif
|