HeptaBattery

Dependencies:   HeptaBattery mbed

Fork of PowerControl by Michael Wei

main.cpp

Committer:
no2chem
Date:
2010-01-30
Revision:
0:9bd5f1bdb845
Child:
1:32bb7ecf8c47

File content as of revision 0:9bd5f1bdb845:

#include "mbed.h"
#include "PowerControl/PowerControl.h"
#include "PowerControl/EthernetPowerControl.h"

int main() {
    //turn OSC1 down
     PHY_PowerDown();
     wait(5);
     LPC_GPIO1->FIODIR = 0x8000000;
     LPC_GPIO1->FIOCLR = 0x8000000;
     wait(5);
     LPC_GPIO1->FIOSET = 0x8000000;
     wait(5);
     PHY_PowerUp();
}