diff options
author | Nick Brassel <nick@tzarc.org> | 2025-02-26 22:25:41 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-02-26 22:25:41 +1100 |
commit | 1efc82403bebe759272d1ba7a79d9dfa0d5df506 (patch) | |
tree | c356ae7afeb0849926534beb5dd4515f693abf99 /data/constants/module_hooks/1.0.0.hjson | |
parent | 63b095212b157c4522bdeda3de144fb87213085d (diff) |
Community modules (#24848)
Diffstat (limited to 'data/constants/module_hooks/1.0.0.hjson')
-rw-r--r-- | data/constants/module_hooks/1.0.0.hjson | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/data/constants/module_hooks/1.0.0.hjson b/data/constants/module_hooks/1.0.0.hjson new file mode 100644 index 0000000000..4e7bf30412 --- /dev/null +++ b/data/constants/module_hooks/1.0.0.hjson @@ -0,0 +1,26 @@ +{ + housekeeping_task: { + ret_type: void + args: void + } + suspend_power_down: { + ret_type: void + args: void + } + suspend_wakeup_init: { + ret_type: void + args: void + } + shutdown: { + ret_type: bool + args: bool jump_to_bootloader + call_params: jump_to_bootloader + } + process_detected_host_os: { + ret_type: bool + args: os_variant_t os + call_params: os + guard: defined(OS_DETECTION_ENABLE) + header: os_detection.h + } +} |