mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-29 12:50:28 +00:00
Improve indentation.
This commit is contained in:
parent
66cacbd0e0
commit
ae05010255
@ -37,7 +37,9 @@ enum Line {
|
|||||||
class PortHandler {
|
class PortHandler {
|
||||||
public:
|
public:
|
||||||
/// Requests the current input value of @c port from the port handler.
|
/// Requests the current input value of @c port from the port handler.
|
||||||
uint8_t get_port_input([[maybe_unused]] Port port) { return 0xff; }
|
uint8_t get_port_input([[maybe_unused]] Port port) {
|
||||||
|
return 0xff;
|
||||||
|
}
|
||||||
|
|
||||||
/// Sets the current output value of @c port and provides @c direction_mask, indicating which pins are marked as output.
|
/// Sets the current output value of @c port and provides @c direction_mask, indicating which pins are marked as output.
|
||||||
void set_port_output([[maybe_unused]] Port port, [[maybe_unused]] uint8_t value, [[maybe_unused]] uint8_t direction_mask) {}
|
void set_port_output([[maybe_unused]] Port port, [[maybe_unused]] uint8_t value, [[maybe_unused]] uint8_t direction_mask) {}
|
||||||
|
Loading…
Reference in New Issue
Block a user