7 lines
200 B
C
7 lines
200 B
C
#pragma once
|
|
#include <HardwareSerial.h>
|
|
#include "sensor_state.h"
|
|
void initRs485(HardwareSerial& serial);
|
|
void publishSensorStatus(HardwareSerial& serial, const ImuState& imu, const GpsState& gps);
|
|
|