Before logging an issue, please update to the latest release of Visual Micro from the Downloads Page.

When Logging a Support Issue in the Forum, please ensure you have also:-

  • Enabled vMicro > Compiler > Show Build Properties
  • Re-Compile your program with these settings enabled
 
Save the new Output to a Text File and....
  • Click the Reply button and attach as .txt file OR
  • Click here to Email us with the file attached, and a link to your post
Support requests without the output above may be impossible to answer, so please help us to help you
 
Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic ESP32 Intellisense Errors for Standard Functions (Read 1072 times)
Simon@Visual Micro
Administrator
*****
Offline


Posts: 2695
Joined: Feb 13th, 2019
ESP32 Intellisense Errors for Standard Functions
Oct 14th, 2022 at 4:36pm
Print Post  
vMicro Version: 1.2022.0905-9
ESP32 Core: 2.0.5

I am receiving Intellisense errors for standard ESP32 functions around wakeup options, example sketch below:
Code
Select All
esp_sleep_wakeup_cause_t wakeup_reason;
    wakeup_reason = esp_sleep_get_wakeup_cause();
    switch (wakeup_reason) {
        case ESP_SLEEP_WAKEUP_EXT0: Serial.println(); break;
        case ESP_SLEEP_WAKEUP_EXT1: Serial.println(); break;
        case ESP_SLEEP_WAKEUP_TIMER: Serial.println(); break;
        case ESP_SLEEP_WAKEUP_TOUCHPAD: Serial.println(); break;
        case ESP_SLEEP_WAKEUP_ULP: Serial.println(); break;
        default:  Serial.println(); break;
    }
    esp_sleep_enable_ext0_wakeup(GPIO_NUM_12, 1);
    esp_deep_sleep_start(); 

« Last Edit: Oct 14th, 2022 at 4:38pm by Simon@Visual Micro »  

Please Register or Login to the Forum to see File Attachments
Back to top
IP Logged
 
Simon@Visual Micro
Administrator
*****
Offline


Posts: 2695
Joined: Feb 13th, 2019
Re: ESP32 Intellisense Errors for Standard Functions
Reply #1 - Oct 14th, 2022 at 4:49pm
Print Post  
Please try the latest version (22.09.05.11) which is available from the top of the board below:
https://www.visualmicro.com/forums/YaBB.pl?board=VS_ARDUINO_EXT_RELEASES
  
Back to top
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint