Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
System/Initialize/Initialize.cpp
- Committer:
- t_yamamoto
- Date:
- 2018-01-13
- Revision:
- 0:562021ed1ba9
File content as of revision 0:562021ed1ba9:
#include "Initialize.h" #include "mbed.h" #include "../../Communication/XBee/XBee.h" #include "../../Input/Switch/Switch.h" #include ".././Output/Motor/Motor.h" void SystemInitialize(void) { XBEE::Controller::Initialize(); SWITCH::Switch::Initialize(); MOTOR::Motor::Initialize(); //割り込み許可 __enable_irq(); }