repair adc base
This commit is contained in:
parent
be6759c990
commit
7ed58d1151
2 changed files with 3 additions and 3 deletions
|
@ -17,7 +17,7 @@ DEL = rm -f
|
|||
|
||||
# zdrojaky
|
||||
OBJS = main.o adcclass.o
|
||||
OBJS += usartclass.o print.o
|
||||
OBJS += usart.o print.o
|
||||
|
||||
include $(TARGET)/$(TOOL).mk
|
||||
BOBJS = $(addprefix $(BLD),$(OBJS))
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
#include "gpio.h"
|
||||
#include "usartclass.h"
|
||||
#include "usart.h"
|
||||
#include "print.h"
|
||||
#include "adcclass.h"
|
||||
#include "oneway.h"
|
||||
//////////////////////////////////////
|
||||
class Process : public OneWay {
|
||||
GpioClass led;
|
||||
UsartClass serial;
|
||||
Usart serial;
|
||||
Print cout;
|
||||
FIFO<uint16_t, 8> data;
|
||||
int pass_cnt;
|
||||
|
|
Loading…
Reference in a new issue