Ran format.py (#217)

This commit is contained in:
Tyler Veness
2016-09-05 07:31:02 -07:00
committed by Peter Johnson
parent 2499771cf4
commit 028efff50d
2 changed files with 3 additions and 3 deletions

View File

@@ -253,8 +253,7 @@ static void HALCleanupAtExit() {
static void timerRollover(uint64_t currentTime, HAL_NotifierHandle handle) {
// reschedule timer for next rollover
int32_t status = 0;
HAL_UpdateNotifierAlarm(handle, currentTime + 0x80000000ULL,
&status);
HAL_UpdateNotifierAlarm(handle, currentTime + 0x80000000ULL, &status);
}
/**

View File

@@ -328,7 +328,8 @@ void HAL_SetSPIHandle(int32_t port, int32_t handle) {
}
}
static void spiAccumulatorProcess(uint64_t currentTime, HAL_NotifierHandle handle) {
static void spiAccumulatorProcess(uint64_t currentTime,
HAL_NotifierHandle handle) {
int32_t status = 0;
auto param = HAL_GetNotifierParam(handle, &status);
if (param == nullptr) return;