10 lines
134 B
C
10 lines
134 B
C
#ifndef SHIFT_REG_H
|
|
#define SHIFT_REG_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void shift_reg_init(void);
|
|
void shift_reg_write(uint16_t data);
|
|
|
|
#endif
|