Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Changed the Esp function to uint32_t to match
  • Loading branch information
lbernstone committed Jul 19, 2019
commit 80d07c83340a70a0ca3c32f7ee401c1daad957aa
2 changes: 1 addition & 1 deletion cores/esp32/Esp.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class EspClass
uint32_t getMaxAllocPsram();

uint8_t getChipRevision();
uint8_t getCpuFreqMHz(){ return getCpuFrequencyMhz(); }
uint32_t getCpuFreqMHz(){ return getCpuFrequencyMhz(); }
uint32_t getCycleCount();
const char * getSdkVersion();

Expand Down