blob: 1f632637c474768ae99cf95d5a1655a180de8339 [file] [log] [blame]
/*!
* ======== Bsp ========
* Minimal board support
*/
@ModuleStartup
module Bsp {
/*!
* ======== led ========
*/
Bool led(Int id);
/*!
* ======== toggleLed ========
*/
Void toggleLed(Int id);
/*!
* ======== turnOffLed ========
*/
Void turnOffLed(Int id);
/*!
* ======== turnOnLed ========
*/
Void turnOnLed(Int id);
/*!
* ======== delay ========
*/
Void delay(Int time);
/*!
* ======== buttonIsPushed ========
*/
Bool button(Int id);
/*
* ======== reset ========
* Reset the device
*/
Void reset();
}