Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5ebb3a4

Browse files
authoredJun 9, 2024··
feat(hal): Add 64 bits parameter
Change from 32 to 64 bits the time parameter for delayMicroseconds() Follows proposed change within the PR.
1 parent 3d25457 commit 5ebb3a4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎cores/esp32/esp32-hal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ BaseType_t xTaskCreateUniversal(
124124
unsigned long long micros();
125125
unsigned long millis();
126126
void delay(uint32_t);
127-
void delayMicroseconds(uint32_t us);
127+
void delayMicroseconds(uint64_t us);
128128

129129
#if !CONFIG_ESP32_PHY_AUTO_INIT
130130
void arduino_phy_init();

0 commit comments

Comments
 (0)
Please sign in to comment.