Jaakko Nahkala 4b0b4ab2c9
esp-vent-main: Mqtt classes ready (#39)
* Relocated subreposiroty and added ESP-classes, problem with systick.h persists

* added test to main

* Clean directory by moving MQTT related classes to their own folders in /src /inc

* Relocated subreposiroty and added ESP-classes, problem with systick.h persists

* added test to main

* rm MQTT test func

Co-authored-by: Vasily Davydov <vasilydavydovmail@yahoo.com>
2022-10-26 23:25:58 +03:00

28 lines
326 B
C

/*
* systick.h
*
* Created on: 6.9.2021
* Author: keijo
*/
#ifndef SYSTICK_H_
#define SYSTICK_H_
#ifdef __cplusplus
extern "C" {
#endif
uint32_t get_ticks(void);
#ifdef __cplusplus
}
#endif
void Sleep(int ms);
/* this function is required by the modbus library */
uint32_t millis();
#endif /* SYSTICK_H_ */