1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419
|
/*
* Octave arduino i2c interface
* Copyright (C) 2018 John Donoghue <john.donoghue@ieee.org>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "settings.h"
#include "OctaveI2CLibrary.h"
#define ARDUINO_SCANI2C 0
#define ARDUINO_CONFIGI2C 1
// replaces below as diff data format
//#define ARDUINO_WRITEI2C 2
//#define ARDUINO_READI2C 3
//#define ARDUINO_WRITEI2CREG 4
//#define ARDUINO_READI2CREG 5
// new ids as new data
#define ARDUINO_WRITEI2C 6
#define ARDUINO_READI2C 7
#define ARDUINO_WRITEI2CREG 8
#define ARDUINO_READI2CREG 9
#ifdef USE_I2C
#include <Wire.h>
static uint8_t i2c_enabled[2] = { false, false };
static uint8_t i2c_address = 0;
#if !defined(WIRE_INTERFACES_COUNT)
# if defined(ARDUINO_ARDUINO_NANO33BLE)
# define WIRE_INTERFACES_COUNT 2
# else
# if defined(WIRE_HOWMANY)
# define WIRE_INTERFACES_COUNT WIRE_HOWMANY
# else
# define WIRE_INTERFACES_COUNT 1
# endif
# endif
#endif
#if !defined(ARDUINO_ARCH_ESP32)
#define I2C_SUPPORTS_ENDCALL 1
#endif
#endif
OctaveI2CLibrary::OctaveI2CLibrary (OctaveArduinoClass &oc)
{
libName = "I2C";
oc.registerLibrary (this);
}
void
OctaveI2CLibrary::commandHandler (uint8_t cmdID, uint8_t* data, uint8_t datasz)
{
switch (cmdID)
{
#ifdef USE_I2C
case ARDUINO_WRITEI2C:
case ARDUINO_WRITEI2CREG:
{
if (datasz < 3 || datasz > 32)
{
// bus
// address
// data
sendInvalidNumArgsMsg ();
}
else
{
if (data[0] >= WIRE_INTERFACES_COUNT || data[0] > 1)
{
sendErrorMsg_P (ERRORMSG_INVALID_DEVICE);
return;
}
if (data[0] == 0)
{
Wire.beginTransmission (data[1]); // should be i2c_address
byte c;
for(c=2;c<datasz;c++)
Wire.write (data[c]);
Wire.endTransmission ();
}
#if WIRE_INTERFACES_COUNT > 1
if (data[0] == 1)
{
Wire1.beginTransmission (data[1]); // should be i2c_address
byte c;
for(c=2;c<datasz;c++)
Wire1.write (data[c]);
Wire1.endTransmission ();
}
#endif
data[1] = 1;
sendResponseMsg (cmdID,data, 2);
}
break;
}
case ARDUINO_READI2C:
{
if (datasz != 3)
{
// bus
// address
// numbytes
sendInvalidNumArgsMsg ();
}
else
{
if (data[0] >= WIRE_INTERFACES_COUNT || data[0] > 1)
{
sendErrorMsg_P (ERRORMSG_INVALID_DEVICE);
return;
}
if (data[0] == 0)
{
Wire.requestFrom (data[1], (size_t)data[2]);
byte c = 0;
byte l = data[2];
if (l > 5) sendWaitMsg ();
datasz = 1;
for (c=0;c<=l;c++)
{
if (Wire.available ())
{
data[datasz] = Wire.read ();
datasz ++;
}
}
}
#if WIRE_INTERFACES_COUNT > 1
if (data[0] == 1)
{
Wire1.requestFrom (data[1], (size_t)data[2]);
byte c = 0;
byte l = data[2];
if (l > 5) sendWaitMsg ();
datasz = 1;
for (c=0;c<=l;c++)
{
if (Wire1.available ())
{
data[datasz] = Wire1.read ();
datasz ++;
}
}
}
#endif
sendResponseMsg (cmdID,data, datasz);
}
break;
}
case ARDUINO_READI2CREG:
{
if (datasz < 5)
{
// bus
// address
// regsz
// reg
// numbytes
sendInvalidNumArgsMsg ();
}
else if (datasz != data[2]+4)
{
sendInvalidNumArgsMsg ();
}
else
{
if (data[0] >= WIRE_INTERFACES_COUNT || data[0] > 1)
{
sendErrorMsg_P (ERRORMSG_INVALID_DEVICE);
return;
}
if (data[0] == 0)
{
Wire.beginTransmission (data[1]);
byte c = 0;
for (c=0;c<data[2];c++)
{
Wire.write (data[3+c]);
}
Wire.endTransmission (false);
byte l = data[3+data[2]];
Wire.requestFrom (data[1], (size_t)l);
if(l > 5) sendWaitMsg ();
datasz = 2;
for (c=0;c<=l;c++)
{
if (Wire.available ())
{
data[datasz] = Wire.read ();
datasz ++;
}
}
}
#if WIRE_INTERFACES_COUNT > 1
if (data[0] == 1)
{
Wire1.beginTransmission (data[1]);
byte c = 0;
for (c=0;c<data[2];c++)
{
Wire1.write (data[3+c]);
}
Wire1.endTransmission (false);
byte l = data[3+data[2]];
Wire1.requestFrom (data[1], (size_t)l);
if(l > 5) sendWaitMsg ();
datasz = 2;
for (c=0;c<=l;c++)
{
if (Wire1.available ())
{
data[datasz] = Wire1.read ();
datasz ++;
}
}
}
#endif
sendResponseMsg (cmdID,data, datasz);
}
break;
}
case ARDUINO_SCANI2C:
{
if (datasz != 2)
{
sendInvalidNumArgsMsg ();
}
else
{
byte error = 1;
// bus 0
// address
if (data[0] >= WIRE_INTERFACES_COUNT || data[0] > 1)
{
sendErrorMsg_P (ERRORMSG_INVALID_DEVICE);
return;
}
if (!i2c_enabled[data[0]])
{
if(data[0] == 0) Wire.begin ();
#if WIRE_INTERFACES_COUNT > 1
if(data[0] == 1) Wire1.begin ();
#endif
}
if (data[0] == 0)
{
Wire.beginTransmission (data[1]);
error = Wire.endTransmission ();
}
#if WIRE_INTERFACES_COUNT > 1
if (data[0] == 1)
{
Wire1.beginTransmission (data[1]);
error = Wire1.endTransmission ();
}
#endif
if (error == 0)
data[2] = 1;
else
data[2] = 0;
if (!i2c_enabled[data[0]])
{
#if defined (I2C_SUPPORTS_ENDCALL)
if(data[0] == 0) Wire.end ();
# if WIRE_INTERFACES_COUNT > 1
if(data[0] == 1) Wire1.end ();
# endif
#endif
}
sendResponseMsg (cmdID, data, 3);
}
break;
}
case ARDUINO_CONFIGI2C:
{
if (datasz == 2 || datasz == 3 || datasz == 5)
{
// i2c bus 0
// enable 1
// i2caddress (optional)
// bitratehi
// birtarelo
if (data[0] >= WIRE_INTERFACES_COUNT || data[0] > 1)
{
sendErrorMsg_P (ERRORMSG_INVALID_DEVICE);
return;
}
// enable
if (data[1] == 1)
{
i2c_enabled[data[0]] = 1;
if (data[0] == 0)
{
// TODO: i dont think need any more as setting i2c as pullup inputs before making it i2c
#if defined(ARDUINO_AVR_NANO_EVERY) || defined (ARDUINO_NANO_RP2040_CONNECT)
// arduino every A4,A5 pin is connected to 2 pins each on the micro controller
// so need ensure that the non I2C pins are pulled hi so doesnt effect the i2c pins
pinMode(18, INPUT_PULLUP);
pinMode(19, INPUT_PULLUP);
#endif
}
if (datasz>= 3)
i2c_address = data[2];
else
i2c_address = 0;
if (data[0] == 0)
{
if (i2c_address > 0)
Wire.begin (i2c_address);
else
Wire.begin ();
if (datasz == 5)
{
int32_t bitrate = (((uint32_t)data[3])<<8) | ((uint32_t)data[4]);
Wire.setClock (bitrate*1000L);
}
}
#if WIRE_INTERFACES_COUNT > 1
if (data[0] == 1)
{
if (i2c_address > 0)
Wire1.begin (i2c_address);
else
Wire1.begin ();
if (datasz == 5)
{
int32_t bitrate = (((uint32_t)data[3])<<8) | ((uint32_t)data[4]);
Wire1.setClock (bitrate*1000L);
}
}
#endif
}
else
{
// disable
#if defined (I2C_SUPPORTS_ENDCALL)
if (data[0] == 0) Wire.end ();
# if WIRE_INTERFACES_COUNT > 1
if (data[0] == 1) Wire1.end ();
# endif
#endif
i2c_enabled[data[0]] = 0;
}
sendResponseMsg (cmdID, data, datasz);
}
else if (datasz == 1)
{
// query config of device
// i2c id
// enable
// address
if (data[0] >= WIRE_INTERFACES_COUNT || data[0] > 1)
{
sendErrorMsg_P (ERRORMSG_INVALID_DEVICE);
return;
}
data[1] = i2c_enabled[data[0]];
data[2] = i2c_address;
sendResponseMsg (cmdID,data, 3);
}
else
{
sendInvalidNumArgsMsg ();
}
break;
}
#endif
default:
sendUnknownCmdIDMsg ();
break;
}
}
|