From 27edcb060fc716f4d3fdb10af169d0dedb9dc694 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Tue, 11 Apr 2017 22:58:06 +0200 Subject: [PATCH] Remove the unused target_config.h --- right/src/buspal/target_config.h | 39 -------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 right/src/buspal/target_config.h diff --git a/right/src/buspal/target_config.h b/right/src/buspal/target_config.h deleted file mode 100644 index 59be961..0000000 --- a/right/src/buspal/target_config.h +++ /dev/null @@ -1,39 +0,0 @@ -#if !defined(__TARGET_CONFIG_H__) -#define __TARGET_CONFIG_H__ - -//////////////////////////////////////////////////////////////////////////////// -// Definitions -//////////////////////////////////////////////////////////////////////////////// - -//! @brief Constants for clock frequencies. -enum _target_clocks -{ - kDefaultClock = 20971520u, - kHIRC = 48000000u, - kMinCoreClockWithUsbSupport = 20000000u, - kMaxCoreClock = 120000000u, - kMaxBusClock = 60000000u, - kMaxFlexBusClock = 50000000u, - kMaxFlashClock = 25000000u, - - kDivider_Min = 1, - kDivider_Max = 16, -}; - -//! @brief Constants for sram partition -enum _sram_partition -{ - kSram_LowerPart = 1, - kSram_UpperPart = 1, -}; - -//! @brief Version constants for the target. -enum _target_version_constants -{ - kTarget_Version_Name = 'T', - kTarget_Version_Major = 1, - kTarget_Version_Minor = 0, - kTarget_Version_Bugfix = 0 -}; - -#endif // __TARGET_CONFIG_H__