| 72 | *****************************************************************************/ |
| 73 | |
| 74 | extern unsigned long millis() |
| 75 | { |
| 76 | clock_t now = clock(); |
| 77 | |
| 78 | return (now * 1000UL) / CLOCKS_PER_SEC; |
| 79 | } |
| 80 | |
| 81 | extern uint32_t esp_log_timestamp(void) |
| 82 | { |
no outgoing calls
no test coverage detected