summaryrefslogtreecommitdiff
path: root/fw/fe310/eos/dev/drv/pcm1770.c
blob: eec7bd0dd32928e0bbfc3f9229b8d19e6d8fbc4c (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_set_cs();
    drv_spi_xchg8(addr, 0);
    drv_spi_xchg8(val, 0);
    drv_spi_clear_cs();
}