mirror of
https://github.com/Derisis13/AT-VFD.git
synced 2025-12-06 19:32:49 +01:00
Fix: unified function declarations and definitions, reverted inlining
QA: autoformat
This commit is contained in:
4
PT6302.c
4
PT6302.c
@@ -29,10 +29,10 @@ inline void PT6302_startup (void)
|
||||
PORTB |= (CSBpin | CLKBpin);
|
||||
PORTB &= ~DINpin;
|
||||
PORTC |= RSTpin;
|
||||
PT6302_reset();
|
||||
PT6302_reset ();
|
||||
}
|
||||
|
||||
inline void transmit_bit(const uint8_t data)
|
||||
static inline void transmit_bit (const uint8_t data)
|
||||
{
|
||||
PORTB &= ~CLKBpin;
|
||||
if ((data & 0x01) == 0)
|
||||
|
||||
Reference in New Issue
Block a user