You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

13 lines
235 B

  1. #ifndef PACKET_H
  2. #define PACKET_H
  3. #include "config.h"
  4. #define PACKET_ADC_DAC 0xA0
  5. #define PACKET_CALIBRATION 0xA1
  6. void packet_send_adc_dac(int16_t adc, uint16_t dac, int overflow);
  7. void packet_send_calibration(float scale);
  8. #endif