Files
Upsilon/ion/src/simulator/nspire/power.cpp
Luminoso-256 0cabec542d [NSpire Simulator] Fix framebuffer in nspire port (#340)
* Fix the nspire port (ergo: framebuffer functions, shift/ctrl don't corrupt things due to weird draw calls)

* cleanup the k_csdk changes
2023-09-15 16:12:05 +00:00

28 lines
482 B
C++

#include <ion/power.h>
#include <stdint.h>
#include <string.h>
#include "main.h"
void powerOff(void){
}
namespace Ion {
namespace Power {
//NOTE: These should probably be reimplemented at some point
//the prior version was a janky mess that flickered a ton on wake
//and was generally awfulness.
void suspend(bool checkIfOnOffKeyReleased) {
// Simulator::Main::runPowerOffSafe(powerOff, true);
}
void standby() {
// Simulator::Main::runPowerOffSafe(powerOff, true);
}
}
}