/* * 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_ */