acquisitiond.h
35 lines
| 568 B
| text/x-c
|
CLexer
|
r216 | /* | ||
* acquisitiond.h | ||||
* | ||||
* Created on: Mar 24, 2015 | ||||
* Author: shinobi | ||||
*/ | ||||
#ifndef ACQUISITIOND_H_ | ||||
#define ACQUISITIOND_H_ | ||||
#include <avr/io.h> | ||||
#include <avr/interrupt.h> | ||||
#include "adcport.h" | ||||
void acq_chn_activate(); | ||||
void acq_chn_deactivate(); | ||||
void acq_chn_datarate(uint16_t datarate); | ||||
void acq_send_information(); | ||||
void acq_send_param(uint8_t param); | ||||
void acq_send_buff(); | ||||
void acq_process_cmd(uint8_t cmd); | ||||
void acq_set_param_to_adc(uint8_t cmd, uint8_t data); | ||||
void acq_start_acquisition(); | ||||
void acq_stop_acquisition(); | ||||
#endif /* ACQUISITIOND_H_ */ | ||||