You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
276 B
22 lines
276 B
/*
|
|
* 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_ */
|
|
|