15 lines
169 B
C
15 lines
169 B
C
|
|
#include "bsp_mos.h"
|
||
|
|
#include "74hc595.h"
|
||
|
|
|
||
|
|
void mos_init(void)
|
||
|
|
{
|
||
|
|
ic_74hc595_init();
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
void mos_set(mos_union mos_data)
|
||
|
|
{
|
||
|
|
ic_74hc595_wirte_32bit(mos_data.mos);
|
||
|
|
}
|
||
|
|
|