this is fork and i will modify for STM32

Fork of AWS-test by Pierre-Marie Ancèle

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers timer_platform.h Source File

timer_platform.h

00001 #ifndef SRC_PROTOCOL_MQTT_AWS_IOT_EMBEDDED_CLIENT_WRAPPER_PLATFORM_LINUX_COMMON_TIMER_PLATFORM_H_
00002 #define SRC_PROTOCOL_MQTT_AWS_IOT_EMBEDDED_CLIENT_WRAPPER_PLATFORM_LINUX_COMMON_TIMER_PLATFORM_H_
00003 
00004 #ifdef __cplusplus
00005 extern "C" {
00006 #endif
00007 
00008 #include "Timer.h"
00009 
00010 /**
00011  * Extension of the Platform specific Timer class
00012  */
00013 class TimerExt: public mbed::Timer {
00014 public:
00015     TimerExt();
00016     int timeout_ms = 0;
00017 };
00018 
00019 #ifdef __cplusplus
00020 }
00021 #endif
00022 
00023 #endif /* SRC_PROTOCOL_MQTT_AWS_IOT_EMBEDDED_CLIENT_WRAPPER_PLATFORM_LINUX_COMMON_TIMER_PLATFORM_H_ */
00024