Please add a public SSH key to your
profile to be able to clone the repository via the SSH protocol.
Pre-render was disabled for this project as it contains too many files. Please click on the files to view them.
-
hardware / amp.brd
-
hardware / amp.sch
-
hardware / amp_lm4780.brd
-
hardware / amp_lm4780.sch
-
hardware / mixer.brd
-
hardware / mixer.sch
-
hardware / power.brd
-
hardware / power.sch
-
hardware / power_amp.brd
-
hardware / power_amp.sch
-
hardware / power_pre.brd
-
hardware / power_pre.sch
i2c_fcts.h
#ifndef __I2C_FCTS_H__
#define __I2C_FCTS_H__
#include "config.h"
#ifdef USE_I2C
void save_presets(uint8_t location);
void load_presets(uint8_t location);
void get_mixer_status(void);
void mixer_send_funct(const uint8_t pga, const uint8_t function, const uint8_t r_diff, const uint8_t l_diff);
void i2c_tx_cmd(uint8_t cmd, uint8_t arg);
void i2c_tx_vol(uint8_t pga_id, uint8_t unmute, uint8_t vol_r, uint8_t vol_l);
#endif
#endif