mirror of
https://github.com/RfidResearchGroup/ChameleonMini.git
synced 2026-05-12 11:20:37 -07:00
WARNING: The files in this commit are our current development version. The hardware and software is not functional yet - so do not use it. We will not answer any support inquiry regarding this version at the moment.
20 lines
335 B
C
20 lines
335 B
C
/*
|
|
* CommandLine.h
|
|
*
|
|
* Created on: 04.05.2013
|
|
* Author: skuser
|
|
*/
|
|
|
|
#ifndef COMMANDLINE_H_
|
|
#define COMMANDLINE_H_
|
|
|
|
#include "Terminal.h"
|
|
|
|
void CommandLineInit(void);
|
|
bool CommandLineProcessByte(uint8_t Byte);
|
|
void CommandLineTick(void);
|
|
|
|
void CommandLineAppendData(void* Buffer, uint16_t Bytes);
|
|
|
|
#endif /* COMMANDLINE_H_ */
|