Cleaned up integer type usage in the HAL (#192)

Replaced all uses of built-in types except char with stdint.h typedefs and all unsigned types with signed in the HAL
This commit is contained in:
Tyler Veness
2016-09-06 19:39:28 -07:00
committed by Peter Johnson
parent 0cd05d1a42
commit 2c94d0ba2f
20 changed files with 50 additions and 44 deletions

View File

@@ -7,7 +7,7 @@
#include "HAL/cpp/Semaphore.h"
Semaphore::Semaphore(uint32_t count) { m_count = count; }
Semaphore::Semaphore(int32_t count) { m_count = count; }
void Semaphore::give() {
std::lock_guard<priority_mutex> lock(m_mutex);