summaryrefslogtreecommitdiff
path: root/app/include/zmk/keymap.h
diff options
context:
space:
mode:
authorinnovaker <66737976+innovaker@users.noreply.github.com>2020-12-02 16:41:57 +0000
committerPete Johanson <peter@peterjohanson.com>2020-12-14 12:41:25 -0500
commitbac1f17cf6ce225876dc7b6b2a809bcd98010391 (patch)
tree9783743b31fdadd66d1b3c9e5a3e14dc661ec313 /app/include/zmk/keymap.h
parenta4652fa25da83ae036613157fb566eb1ce1426fe (diff)
refactor(app): replace Zephyr integer types with C99 integer types
u8_t → uint8_t u16_t → uint16_t u32_t → uint32_t u64_t → uint64_t s8_t → int8_t s16_t → int16_t s32_t → int32_t s64_t → int64_t Prerequisite for #223 See: https://github.com/zephyrproject-rtos/zephyr/releases/tag/zephyr-v2.4.0 PR: #467
Diffstat (limited to 'app/include/zmk/keymap.h')
-rw-r--r--app/include/zmk/keymap.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/app/include/zmk/keymap.h b/app/include/zmk/keymap.h
index 88dc933..7303d4a 100644
--- a/app/include/zmk/keymap.h
+++ b/app/include/zmk/keymap.h
@@ -6,14 +6,14 @@
#pragma once
-typedef u32_t zmk_keymap_layers_state;
+typedef uint32_t zmk_keymap_layers_state;
-u8_t zmk_keymap_layer_default();
+uint8_t zmk_keymap_layer_default();
zmk_keymap_layers_state zmk_keymap_layer_state();
-bool zmk_keymap_layer_active(u8_t layer);
-u8_t zmk_keymap_highest_layer_active();
-int zmk_keymap_layer_activate(u8_t layer);
-int zmk_keymap_layer_deactivate(u8_t layer);
-int zmk_keymap_layer_toggle(u8_t layer);
+bool zmk_keymap_layer_active(uint8_t layer);
+uint8_t zmk_keymap_highest_layer_active();
+int zmk_keymap_layer_activate(uint8_t layer);
+int zmk_keymap_layer_deactivate(uint8_t layer);
+int zmk_keymap_layer_toggle(uint8_t layer);
-int zmk_keymap_position_state_changed(u32_t position, bool pressed, s64_t timestamp);
+int zmk_keymap_position_state_changed(uint32_t position, bool pressed, int64_t timestamp);