Fixes a missed HAL_Bool change from int32 (#181)

This commit is contained in:
Thad House
2016-07-17 20:54:39 -07:00
committed by Peter Johnson
parent 75eabfee1c
commit 1ca291f20b
2 changed files with 2 additions and 2 deletions

View File

@@ -29,7 +29,7 @@ extern "C" {
* Create a new instance of a digital port.
*/
HAL_DigitalHandle HAL_InitializeDIOPort(HAL_PortHandle port_handle,
int32_t input, int32_t* status) {
HAL_Bool input, int32_t* status) {
initializeDigital(status);
if (*status != 0) return HAL_kInvalidHandle;