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.
Dependencies: BLE_API mbed nRF51822
Fork of MCS_LRF by
Diff: ACA.h
- Revision:
- 21:c19355cc5e79
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ACA.h Tue Mar 06 21:34:31 2018 +0000 @@ -0,0 +1,20 @@ +#pragma once + +#ifndef _ACA_ +#define _ACA_ + +#include <stdio.h> + +#include "mbed.h" + +// Time interval for ACA Charger task +#define ACA_CHARGER_TASK_TIME_MS 20 + +extern DigitalOut disableVBUS; +extern DigitalOut ID_SW; +extern DigitalOut ID_SW1; +extern DigitalIn VBUS_IN; + +void ACAChargerTask(void); + +#endif // _ACA_
