mirror of
https://github.com/tillitis/tillitis-key1.git
synced 2025-03-12 18:16:55 -04:00
14 lines
232 B
C
14 lines
232 B
C
// Copyright (C) 2025 - Tillitis AB
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
#ifndef TKEY_SYSCALL_H
|
|
#define TKEY_SYSCALL_H
|
|
|
|
enum {
|
|
TK1_SYSCALL_RESET = 1,
|
|
TK1_SYSCALL_SET_LED = 10,
|
|
TK1_SYSCALL_GET_FLASH_CAPACITY = 11,
|
|
};
|
|
|
|
#endif
|