diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-07-31 11:01:24 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-08-06 23:36:05 -0400 |
commit | 742048a08d11982e98a1dc00c67a3974e6b5618c (patch) | |
tree | f7ff056f3484db64245e629b4e2ca7505559662c /lib/cmsis-sam3x8e/include/system_sam3xa.h | |
parent | e1146c04fd4b8d3f1de0c4fe202513c843868acb (diff) | |
download | kutter-742048a08d11982e98a1dc00c67a3974e6b5618c.tar.gz kutter-742048a08d11982e98a1dc00c67a3974e6b5618c.tar.xz kutter-742048a08d11982e98a1dc00c67a3974e6b5618c.zip |
lib: Remove the (now unused) cmsis-sam3x8e directory
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'lib/cmsis-sam3x8e/include/system_sam3xa.h')
-rw-r--r-- | lib/cmsis-sam3x8e/include/system_sam3xa.h | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/lib/cmsis-sam3x8e/include/system_sam3xa.h b/lib/cmsis-sam3x8e/include/system_sam3xa.h deleted file mode 100644 index 504024e3..00000000 --- a/lib/cmsis-sam3x8e/include/system_sam3xa.h +++ /dev/null @@ -1,58 +0,0 @@ -/*! \file ********************************************************************* - * - * \brief CMSIS Cortex-M# Device Peripheral Access Layer Header File - * for SAM3 devices. - * - * $asf_license$ - * - * \par Purpose - * - * This file provides basic support for Cortex-M processor based - * microcontrollers. - * - * \author Atmel Corporation: http://www.atmel.com \n - * Support and FAQ: http://support.atmel.no/ - * - ******************************************************************************/ - -#ifndef SYSTEM_SAM3X_H_INCLUDED -#define SYSTEM_SAM3X_H_INCLUDED - -/* @cond 0 */ -/**INDENT-OFF**/ -#ifdef __cplusplus -extern "C" { -#endif -/**INDENT-ON**/ -/* @endcond */ - -#include <stdint.h> - -extern uint32_t SystemCoreClock; /* System Clock Frequency (Core Clock) */ - -/** - * @brief Setup the microcontroller system. - * Initialize the System and update the SystemCoreClock variable. - */ -void SystemInit(void); - -/** - * @brief Updates the SystemCoreClock with current core Clock - * retrieved from cpu registers. - */ -void SystemCoreClockUpdate(void); - -/** - * Initialize flash. - */ -void system_init_flash(uint32_t dw_clk); - -/* @cond 0 */ -/**INDENT-OFF**/ -#ifdef __cplusplus -} -#endif -/**INDENT-ON**/ -/* @endcond */ - -#endif /* SYSTEM_SAM3X_H_INCLUDED */ |