summaryrefslogtreecommitdiff
path: root/ucoo/arch/arch.stm32.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ucoo/arch/arch.stm32.cc')
-rw-r--r--ucoo/arch/arch.stm32.cc7
1 files changed, 0 insertions, 7 deletions
diff --git a/ucoo/arch/arch.stm32.cc b/ucoo/arch/arch.stm32.cc
index e5d5669..a715b75 100644
--- a/ucoo/arch/arch.stm32.cc
+++ b/ucoo/arch/arch.stm32.cc
@@ -24,18 +24,11 @@
#include "ucoo/arch/arch.hh"
#include "ucoo/common.hh"
-#include <libopencm3/stm32/rcc.h>
#include <libopencm3/cm3/scb.h>
namespace ucoo {
void
-arch_init (int argc, const char **argv)
-{
- rcc_clock_setup_hse_3v3 (&hse_8mhz_3v3[CLOCK_3V3_120MHZ]);
-}
-
-void
arch_reset ()
{
SCB_AIRCR = SCB_AIRCR_VECTKEY | SCB_AIRCR_SYSRESETREQ;