Fix comment

This commit is contained in:
Phillip Burgess 2023-02-14 08:33:47 -08:00 committed by ladyada
parent 40e15367fe
commit 382363a876
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@
// #define MODE_720x480_60Hz
// #define MODE_800x600_60Hz
// #define MODE_960x540p_60Hz
// #define MODE_1280x720_30Hz
//#define MODE_1280x720_30Hz
#if defined(MODE_640x480_60Hz)
// DVDD 1.2V (1.1V seems ok too)

View file

@ -29,7 +29,7 @@ static PicoDVI *dviptr = NULL; // For C access to active C++ object
void setup1(void) {
delay(1); // Required, perhaps core related
while (dviptr == NULL)
; // Wait for DVIGFX*::begin() to start on core 0
; // Wait for PicoDVI::begin() to start on core 0
dviptr->_setup();
}