summaryrefslogtreecommitdiff
path: root/fw/fe310/eos/dev/drv/pcm1770.c
blob: c617ae90e298a20aafcbfcbd82196056bfec6377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdlib.h>
#include <stdint.h>

#include "platform.h"
#include "pcm1770.h"

void pcm1770_reg_write(uint8_t addr, uint8_t val) {
    drv_spi_cs_set();
    drv_spi_xchg8(addr, 0);
    drv_spi_xchg8(val, 0);
    drv_spi_cs_clear();
}