mirror of
https://github.com/OneOfEleven/uv-k5-firmware-custom.git
synced 2025-06-19 06:39:49 +03:00
fix little display digit overlap bug
This commit is contained in:
@ -22,7 +22,7 @@
|
||||
|
||||
void EEPROM_ReadBuffer(const uint16_t address, void *p_buffer, const unsigned int size)
|
||||
{
|
||||
if (p_buffer == NULL || (address + size) > 0x2000 || size == 0)
|
||||
if ((address + size) > 0x2000 || size == 0)
|
||||
return;
|
||||
|
||||
I2C_Start();
|
||||
|
Reference in New Issue
Block a user