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.
Initialize.cpp
00001 #include "Initialize.h" 00002 00003 #include "mbed.h" 00004 #include "../../Communication/XBee/XBee.h" 00005 #include "../../Input/Switch/Switch.h" 00006 #include ".././Output/Motor/Motor.h" 00007 00008 void SystemInitialize(void) { 00009 XBEE::Controller::Initialize(); 00010 // SWITCH::Switch::Initialize(); 00011 MOTOR::Motor::Initialize(); 00012 00013 //割り込み許可 00014 __enable_irq(); 00015 } 00016
Generated on Fri Jul 15 2022 17:22:44 by
