zephyr: replace zephyr integer types with C99 types
git grep -l 'u\(8\|16\|32\|64\)_t' | \ xargs sed -i "s/u\(8\|16\|32\|64\)_t/uint\1_t/g" git grep -l 's\(8\|16\|32\|64\)_t' | \ xargs sed -i "s/s\(8\|16\|32\|64\)_t/int\1_t/g" Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
parent
ee6fa31af6
commit
a1b77fd589
2364 changed files with 32505 additions and 32505 deletions
|
@ -30,7 +30,7 @@ extern "C" {
|
|||
*
|
||||
* @return The battery level in percent.
|
||||
*/
|
||||
u8_t bt_gatt_bas_get_battery_level(void);
|
||||
uint8_t bt_gatt_bas_get_battery_level(void);
|
||||
|
||||
/** @brief Update battery level value.
|
||||
*
|
||||
|
@ -41,7 +41,7 @@ u8_t bt_gatt_bas_get_battery_level(void);
|
|||
*
|
||||
* @return Zero in case of success and error code in case of error.
|
||||
*/
|
||||
int bt_gatt_bas_set_battery_level(u8_t level);
|
||||
int bt_gatt_bas_set_battery_level(uint8_t level);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
|
|
|
@ -29,7 +29,7 @@ extern "C" {
|
|||
*
|
||||
* @return Zero in case of success and error code in case of error.
|
||||
*/
|
||||
int bt_gatt_hrs_notify(u16_t heartrate);
|
||||
int bt_gatt_hrs_notify(uint16_t heartrate);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue