You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
367 B
14 lines
367 B
#ifndef __INCLUDED_TDA9840__
|
|
#define __INCLUDED_TDA9840__
|
|
|
|
#define I2C_ADDR_TDA9840 0x42
|
|
|
|
/* values may range between +2.5 and -2.0;
|
|
the value has to be multiplied with 10 */
|
|
#define TDA9840_LEVEL_ADJUST _IOW('v',3,int)
|
|
|
|
/* values may range between +2.5 and -2.4;
|
|
the value has to be multiplied with 10 */
|
|
#define TDA9840_STEREO_ADJUST _IOW('v',4,int)
|
|
|
|
#endif
|
|
|