blob: 3b4bb9e69cb61d26025f371eb286dbf83bc262eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma once
// Initialize the state.
void star_key_init(void);
// Define the new value for the star key
void set_star_key(bool status);
// This code is intended to be called from the master.
// Send the star key status to the other side of the keyboard
void sync_star_key(void);
|