add power testing notes for eink

This commit is contained in:
geeksville
2020-09-28 17:38:36 -07:00
parent fec7a6bf17
commit 124a82888d
2 changed files with 18 additions and 3 deletions

View File

@@ -75,13 +75,13 @@ void Air530GPS::sleep() {
/// wake the GPS into normal operation mode
void Air530GPS::wake()
{
#if 0
#if 1
#ifdef PIN_GPS_WAKE
digitalWrite(PIN_GPS_WAKE, 1);
pinMode(PIN_GPS_WAKE, OUTPUT);
#endif
#else
// For power testing
// For power testing - keep GPS sleeping forever
sleep();
#endif
}