// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. /* * Log library — implementation notes. * * This was once an amazing logging library...which did many things I don't * understand. I sorta got it to work with the ESP8266, but it was originally * built for the ESP32 by Espressif. I gave up on that...and not it does pretty * much nothing but print messages. * * Mangled by Tyler Berezowsky */ #include "log/esp_log.h" uint32_t esp_log_timestamp() { return xthal_get_ccount() / (CPU_CLK_FREQ / 1000); }