mirror of
https://github.com/rvtr/twl_mcu.git
synced 2025-06-18 14:45:41 -04:00
22 lines
409 B
C
22 lines
409 B
C
#ifndef __DCP_H__
|
|
#define __DCP_H__
|
|
|
|
#include "jhl_defs.h"
|
|
|
|
// DCPのスレーブアドレス。これに LSB 1bit の R/~W を or して出力してくださいませ。
|
|
// いちいちシフトするのが面倒なのです。
|
|
#define IIC_SLV_ADDR_DCP 0x50
|
|
#define IIC_DCP_REG_ADR_VOL 0x00
|
|
|
|
static u8 dcp_read_vol();
|
|
static u8 vol_2_raw( u8 vol );
|
|
|
|
void dcp_vol_set();
|
|
void vol_inc();
|
|
void vol_dec();
|
|
void dcp_vol_read();
|
|
|
|
|
|
|
|
#endif
|