23 lines
276 B
C
23 lines
276 B
C
/*
|
|
* application.h
|
|
*
|
|
* Created on: Jan 30, 2022
|
|
* Author: ftobler
|
|
*/
|
|
|
|
#ifndef APPLICATION_H_
|
|
#define APPLICATION_H_
|
|
|
|
#include "serial.h"
|
|
|
|
extern Serial serialUSB;
|
|
extern Serial serialRS485;
|
|
|
|
|
|
void setup();
|
|
void loop();
|
|
void systick();
|
|
|
|
|
|
#endif /* APPLICATION_H_ */
|