25 lines
272 B
C
25 lines
272 B
C
/*
|
|
* app.h
|
|
*
|
|
* Created on: Jun 26, 2018
|
|
* Author: conor
|
|
*/
|
|
|
|
#ifndef SRC_APP_H_
|
|
#define SRC_APP_H_
|
|
|
|
#define USING_DEV_BOARD
|
|
|
|
#define USING_PC
|
|
|
|
#define DEBUG_LEVEL 1
|
|
|
|
#define ENABLE_U2F
|
|
|
|
//#define BRIDGE_TO_WALLET
|
|
|
|
void printing_init();
|
|
|
|
|
|
#endif /* SRC_APP_H_ */
|