Browse Source

Changed i2c lock mask method

fastled
Xose Pérez 7 years ago
parent
commit
80af416d5b
1 changed files with 10 additions and 11 deletions
  1. +10
    -11
      code/espurna/i2c.ino

+ 10
- 11
code/espurna/i2c.ino View File

@ -8,8 +8,7 @@ Copyright (C) 2017 by Xose Pérez <xose dot perez at gmail dot com>
#if I2C_SUPPORT #if I2C_SUPPORT
#include <vector> unsigned int _i2c_locked[16] = {0};
std::vector<unsigned char> _i2c_locked;
#if I2C_USE_BRZO #if I2C_USE_BRZO
#include "brzo_i2c.h" #include "brzo_i2c.h"
@ -127,20 +126,20 @@ bool i2cCheck(unsigned char address) {
} }
bool i2cGetLock(unsigned char address) { bool i2cGetLock(unsigned char address) {
for (unsigned char i=0; i<_i2c_locked.size(); i++) { unsigned char index = address / 8;
if (_i2c_locked[i] == address) return false; unsigned char mask = 1 << (address % 8);
} if (_i2c_locked[index] & mask) return false;
_i2c_locked.push_back(address); _i2c_locked[index] = _i2c_locked[index] | mask;
DEBUG_MSG_P(PSTR("[I2C] Address 0x%02X locked\n"), address); DEBUG_MSG_P(PSTR("[I2C] Address 0x%02X locked\n"), address);
return true; return true;
} }
bool i2cReleaseLock(unsigned char address) { bool i2cReleaseLock(unsigned char address) {
for (unsigned char i=0; i<_i2c_locked.size(); i++) { unsigned char index = address / 8;
if (_i2c_locked[i] == address) { unsigned char mask = 1 << (address % 8);
_i2c_locked.erase(_i2c_locked.begin() + i); if (_i2c_locked[index] & mask) {
return true; _i2c_locked[index] = _i2c_locked[index] & ~mask;
} return true;
} }
return false; return false;
} }


|||||||
x
 
000:0
Loading…
Cancel
Save