Skip to content

Commit

Permalink
Merge pull request #198 from Heltec-Aaron-Lee/dev
Browse files Browse the repository at this point in the history
[updata]
  • Loading branch information
wangxiangwangeuse authored Aug 24, 2023
2 parents 4681fb8 + 6044a10 commit 644409a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ typedef enum

HT_st7735 st7735;
TinyGPSPlus gps;
#define VGNSS_CTRL 37
#define VGNSS_CTRL Vext
test_status_t test_status;
uint16_t wifi_connect_try_num = 15;
bool resendflag=false;
Expand Down Expand Up @@ -379,7 +379,7 @@ void lora_status_handle(void)
void gps_test(void)
{
pinMode(VGNSS_CTRL,OUTPUT);
digitalWrite(VGNSS_CTRL,LOW);
digitalWrite(VGNSS_CTRL,HIGH);
Serial1.begin(115200,SERIAL_8N1,33,34);
Serial.println("gps_test");
st7735.st7735_fill_screen(ST7735_BLACK);
Expand Down Expand Up @@ -440,7 +440,7 @@ void setup()
Serial.printf("%08X\n",(uint32_t)chipid);//print Low 4bytes.

pinMode(LED ,OUTPUT);
digitalWrite(LED, LOW);
digitalWrite(LED, LOW);
test_status = WIFI_CONNECT_TEST_INIT;
}

Expand Down

0 comments on commit 644409a

Please sign in to comment.