9e8129c63a
git-svn-id: https://bucket.mit.edu/svn/nilm/zoom@7697 ddd99763-3ecb-0310-9145-efcb8ce7c51f
13 lines
235 B
C
13 lines
235 B
C
#ifndef PACKET_H
|
|
#define PACKET_H
|
|
|
|
#include "config.h"
|
|
|
|
#define PACKET_ADC_DAC 0xA0
|
|
#define PACKET_CALIBRATION 0xA1
|
|
|
|
void packet_send_adc_dac(int16_t adc, uint16_t dac, int overflow);
|
|
void packet_send_calibration(float scale);
|
|
|
|
#endif
|