solo1/pc/app.h

41 wiersze
1.1 KiB
C
Czysty Zwykły widok Historia

2019-02-12 22:18:17 +00:00
// Copyright 2019 SoloKeys Developers
//
// Licensed under the Apache License, Version 2.0, <LICENSE-APACHE or
// http://apache.org/licenses/LICENSE-2.0> or the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>, at your option. This file may not be
// copied, modified, or distributed except according to those terms.
#ifndef SRC_APP_H_
#define SRC_APP_H_
#define USING_DEV_BOARD
2018-07-12 01:55:20 +00:00
#define USING_PC
2018-09-05 02:11:21 +00:00
#define DEBUG_LEVEL 1
#define ENABLE_U2F
2018-09-03 04:47:30 +00:00
//#define BRIDGE_TO_WALLET
void printing_init();
2018-12-07 04:48:46 +00:00
// 0xRRGGBB
#define LED_INIT_VALUE 0x000800
2018-12-09 01:37:30 +00:00
#define LED_WINK_VALUE 0x000008
2018-12-07 04:48:46 +00:00
#define LED_MAX_SCALER 30
#define LED_MIN_SCALER 1
// # of ms between each change in LED
#define HEARTBEAT_PERIOD 100
// Each LED channel will be multiplied by a integer between LED_MAX_SCALER
// and LED_MIN_SCALER to cause the slow pulse. E.g.
// #define LED_INIT_VALUE 0x301000
// #define LED_MAX_SCALER 30
// #define LED_MIN_SCALER 1
// #define HEARTBEAT_PERIOD 8
// Will pulse from 0x301000 to 0x903000 to 0x301000 ...
// Which will take ~8 * (30)*2 ms
#endif /* SRC_APP_H_ */