Files
Test_STM_ESP/ESP32_ESP-IDF/main/can/can_receiver.hpp

9 lines
125 B
C++

#pragma once
#include <string.h>
class CANReceiver
{
public:
static void Init();
static bool Read(uint16_t& ppm);
};