sitara_depot/components/free_rtos/handler_store/handler.hpp
algin ae3cac8a7d feat: First commit
Adds sitara_depot/free_rtos

Original one is on server_gorbunov/SmartForce4.0/sitara_depot
2023-05-03 14:01:32 +03:00

23 lines
360 B
C++

/*
* handler_obj.hpp
*
* Created on: 6 ìàð. 2023 ã.
* Author: sychev
*/
#ifndef FREE_RTOS_HANDLER_STORE_HANDLER_HPP_
#define FREE_RTOS_HANDLER_STORE_HANDLER_HPP_
#include <cstdint>
class Handler {
public:
virtual int32_t Process(uint8_t * p_data, uint32_t len) = 0;
~Handler() {};
};
#endif /* FREE_RTOS_HANDLER_STORE_HANDLER_HPP_ */