is31fl3731: driver naming cleanups (#21918)
This commit is contained in:
		
							parent
							
								
									1cbb5ae99e
								
							
						
					
					
						commit
						8136eda6d4
					
				
					 64 changed files with 189 additions and 159 deletions
				
			
		|  | @ -19,9 +19,9 @@ You can use between 1 and 4 IS31FL3731 IC's. Do not specify `LED_DRIVER_ADDR_<N> | |||
| 
 | ||||
| | Variable | Description | Default | | ||||
| |----------|-------------|---------| | ||||
| | `ISSI_TIMEOUT` | (Optional) How long to wait for i2c messages, in milliseconds | 100 | | ||||
| | `ISSI_PERSISTENCE` | (Optional) Retry failed messages this many times | 0 | | ||||
| | `LED_DRIVER_COUNT` | (Required) How many LED driver IC's are present | | | ||||
| | `IS31FL3731_I2C_TIMEOUT` | (Optional) How long to wait for i2c messages, in milliseconds | 100 | | ||||
| | `IS31FL3731_I2C_PERSISTENCE` | (Optional) Retry failed messages this many times | 0 | | ||||
| | `IS31FL3731_DRIVER_COUNT` | (Required) How many LED driver IC's are present | | | ||||
| | `LED_MATRIX_LED_COUNT` | (Required) How many LED lights are present across all drivers | | | ||||
| | `LED_DRIVER_ADDR_1` | (Required) Address for the first LED driver | | | ||||
| | `LED_DRIVER_ADDR_2` | (Optional) Address for the second LED driver | | | ||||
|  | @ -41,7 +41,7 @@ Here is an example using 2 drivers. | |||
| #define LED_DRIVER_ADDR_1 0b1110100 | ||||
| #define LED_DRIVER_ADDR_2 0b1110110 | ||||
| 
 | ||||
| #define LED_DRIVER_COUNT 2 | ||||
| #define IS31FL3731_DRIVER_COUNT 2 | ||||
| #define LED_DRIVER_1_LED_TOTAL 25 | ||||
| #define LED_DRIVER_2_LED_TOTAL 24 | ||||
| #define LED_MATRIX_LED_COUNT (LED_DRIVER_1_LED_TOTAL + LED_DRIVER_2_LED_TOTAL) | ||||
|  |  | |||
|  | @ -19,10 +19,10 @@ You can use between 1 and 4 IS31FL3731 IC's. Do not specify `DRIVER_ADDR_<N>` de | |||
| 
 | ||||
| | Variable | Description | Default | | ||||
| |----------|-------------|---------| | ||||
| | `ISSI_TIMEOUT` | (Optional) How long to wait for i2c messages, in milliseconds | 100 | | ||||
| | `ISSI_PERSISTENCE` | (Optional) Retry failed messages this many times | 0 | | ||||
| | `ISSI_3731_DEGHOST` | (Optional) Set this define to enable de-ghosting by halving Vcc during blanking time | | | ||||
| | `DRIVER_COUNT` | (Required) How many RGB driver IC's are present | | | ||||
| | `IS31FL3731_I2C_TIMEOUT` | (Optional) How long to wait for i2c messages, in milliseconds | 100 | | ||||
| | `IS31FL3731_I2C_PERSISTENCE` | (Optional) Retry failed messages this many times | 0 | | ||||
| | `IS31FL3731_DEGHOST` | (Optional) Set this define to enable de-ghosting by halving Vcc during blanking time | | | ||||
| | `IS31FL3731_DRIVER_COUNT` | (Required) How many RGB driver IC's are present | | | ||||
| | `RGB_MATRIX_LED_COUNT` | (Required) How many RGB lights are present across all drivers | | | ||||
| | `DRIVER_ADDR_1` | (Required) Address for the first RGB driver | | | ||||
| | `DRIVER_ADDR_2` | (Optional) Address for the second RGB driver | | | ||||
|  | @ -42,7 +42,7 @@ Here is an example using 2 drivers. | |||
| #define DRIVER_ADDR_1 0b1110100 | ||||
| #define DRIVER_ADDR_2 0b1110110 | ||||
| 
 | ||||
| #define DRIVER_COUNT 2 | ||||
| #define IS31FL3731_DRIVER_COUNT 2 | ||||
| #define DRIVER_1_LED_TOTAL 25 | ||||
| #define DRIVER_2_LED_TOTAL 24 | ||||
| #define RGB_MATRIX_LED_COUNT (DRIVER_1_LED_TOTAL + DRIVER_2_LED_TOTAL) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 Ryan
						Ryan