A classy affair

Dependencies:   mbed mbed-rtos ShiftReg TextLCD

Committer:
thomasmorris
Date:
Wed Apr 10 11:33:32 2019 +0000
Revision:
3:3700f0c29710
Child:
4:1ef122d47bf3
A classy afair

Who changed what in which revision?

UserRevisionLine numberNew contents of line
thomasmorris 3:3700f0c29710 1 #include "Post.hpp"
thomasmorris 3:3700f0c29710 2 POWER POWER_1(PA_10,PA_11,PB_0,PB_1);
thomasmorris 3:3700f0c29710 3 INTERFACE INTERFACE_1;
thomasmorris 3:3700f0c29710 4 void POST()
thomasmorris 3:3700f0c29710 5 {
thomasmorris 3:3700f0c29710 6 if(POWER_1.Post() == 1)//Success
thomasmorris 3:3700f0c29710 7 {
thomasmorris 3:3700f0c29710 8 PC.printf("POWER Post pass\n");
thomasmorris 3:3700f0c29710 9 }
thomasmorris 3:3700f0c29710 10 if(INTERFACE_1.Post() == 1)//Success
thomasmorris 3:3700f0c29710 11 {
thomasmorris 3:3700f0c29710 12 PC.printf("POWER Post pass\n");
thomasmorris 3:3700f0c29710 13 }
thomasmorris 3:3700f0c29710 14 }