mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
* Fix the nspire port (ergo: framebuffer functions, shift/ctrl don't corrupt things due to weird draw calls) * cleanup the k_csdk changes
28 lines
482 B
C++
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);
|
|
}
|
|
|
|
}
|
|
}
|