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.
18 lines
382 B
18 lines
382 B
/*
|
|
* Copyright (c) 2019, Erich Styger
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef PLATFORM_H_
|
|
#define PLATFORM_H_
|
|
|
|
/* configure the HW/Board version with TINYK22_HAT_VERSION in IncludeMcuLibConfig.h */
|
|
|
|
#define PL_BOARD_IS_TINYK22 (1) /* otherwise: FRDM-K22F */
|
|
#define PL_CONFIG_USE_RTT (0)
|
|
|
|
void PL_Init(void);
|
|
void PL_Deinit(void);
|
|
|
|
#endif /* PLATFORM_H_ */
|
|
|