zoom/firmware/packet.h
jim 9e8129c63a Normal mode, using new calib
git-svn-id: https://bucket.mit.edu/svn/nilm/zoom@7697 ddd99763-3ecb-0310-9145-efcb8ce7c51f
2009-07-21 22:00:30 +00:00

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