forked from sosandroid/FRAM_MB85RC_I2C
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FRAM_MB85RC_I2C.cpp
960 lines (859 loc) · 27.3 KB
/
FRAM_MB85RC_I2C.cpp
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
/**************************************************************************/
/*!
@file FRAM_MB85RC_I2C.cpp
@author SOSAndroid (E. Ha.)
@license BSD (see license.txt)
Driver for the MB85RC I2C FRAM from Fujitsu.
@section HISTORY
v1.0 - First release
v1.0.1 - Robustness enhancement
v1.0.2 - fix constructor, introducing byte move in memory
v1.0.3 - fix writeLong() function
v1.0.4 - fix constructor call error
v1.0.5 - Enlarge density chip support by making check more flexible, Error codes not anymore hardcoded, add connect example, add Cypress FM24 & CY15B series comment.
v1.1.0b - adding support for devices without device IDs + 4K & 16 K devices support
v1.1.0b1 - Fixing checkDevice() + end of range memory map check
v1.2.0 - Uses reinterpret_cast instead of bit shift / masking for performance. Breaks backward compatibility with previous code - See PR#6
*/
/**************************************************************************/
#include <stdlib.h>
#include <Wire.h>
#include "FRAM_MB85RC_I2C.h"
/*========================================================================*/
/* CONSTRUCTORS */
/*========================================================================*/
/**************************************************************************/
/*!
Constructor
*/
/**************************************************************************/
FRAM_MB85RC_I2C::FRAM_MB85RC_I2C(void)
{
_framInitialised = false;
_manualMode = false;
i2c_addr = MB85RC_DEFAULT_ADDRESS;
wpPin = DEFAULT_WP_PIN;
byte result = FRAM_MB85RC_I2C::initWP(DEFAULT_WP_STATUS);
}
FRAM_MB85RC_I2C::FRAM_MB85RC_I2C(uint8_t address, boolean wp)
{
_framInitialised = false;
_manualMode = false;
i2c_addr = address;
wpPin = DEFAULT_WP_PIN;
byte result = FRAM_MB85RC_I2C::initWP(wp);
}
FRAM_MB85RC_I2C::FRAM_MB85RC_I2C(uint8_t address, boolean wp, int pin)
{
_framInitialised = false;
_manualMode = false;
i2c_addr = address;
wpPin = pin;
byte result = FRAM_MB85RC_I2C::initWP(wp);
}
FRAM_MB85RC_I2C::FRAM_MB85RC_I2C(uint8_t address, boolean wp, int pin, uint16_t chipDensity)
{
//This constructor provides capability for chips without the device IDs implemented
_framInitialised = false;
_manualMode = true;
i2c_addr = address;
wpPin = pin;
density = chipDensity;
byte result = FRAM_MB85RC_I2C::initWP(wp);
}
/*========================================================================*/
/* PUBLIC FUNCTIONS */
/*========================================================================*/
void FRAM_MB85RC_I2C::begin(void) {
byte deviceFound = FRAM_MB85RC_I2C::checkDevice();
#if defined(SERIAL_DEBUG) && (SERIAL_DEBUG == 1)
if (!Serial) Serial.begin(9600);
if (Serial){
Serial.println("FRAM_MB85RC_I2C object created");
Serial.print("I2C device address 0x");
Serial.println(i2c_addr, HEX);
Serial.print("WP pin number ");
Serial.println(wpPin, DEC);
Serial.print("Write protect management: ");
if(MANAGE_WP) {
Serial.println("true");
}
else {
Serial.println("false");
}
if(deviceFound == ERROR_0) {
Serial.println("Memory Chip initialized");
FRAM_MB85RC_I2C::deviceIDs2Serial();
}
else {
Serial.println("Memory Chip NOT FOUND");
}
Serial.println("...... ...... ......");
}
#endif
return;
}
/**************************************************************************/
/*!
Check if device is connected at address @i2c_addr
returns 0 = device found
7 = device not found
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::checkDevice(void)
{
byte result;
if (_manualMode) {
result = setDeviceIDs();
}
else {
result = getDeviceIDs();
}
//
if ((result == ERROR_0) && ((manufacturer == FUJITSU_MANUFACT_ID) || (manufacturer == CYPRESS_MANUFACT_ID) || (manufacturer == MANUALMODE_MANUFACT_ID)) && (maxaddress != 0)) {
_framInitialised = true;
}
else {
result = ERROR_7;
_framInitialised = false;
}
return result;
}
/**************************************************************************/
/*!
@brief Writes an array of bytes from a specific address
@params[in] i2cAddr
The I2C address of the FRAM memory chip (1010+A2+A1+A0)
@params[in] framAddr
The 16-bit address to write to in FRAM memory
@params[in] items
The number of items to write from the array
@params[in] values[]
The array of bytes to write
@returns
return code of Wire.endTransmission()
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::writeArray (uint16_t framAddr, byte items, uint8_t values[])
{
if ((framAddr >= maxaddress) || ((framAddr + (uint16_t) items - 1) >= maxaddress)) return ERROR_11;
FRAM_MB85RC_I2C::I2CAddressAdapt(framAddr);
for (byte i=0; i < items ; i++) {
Wire.write(values[i]);
}
return Wire.endTransmission();
}
/**************************************************************************/
/*!
@brief Writes a single byte to a specific address
@params[in] i2cAddr
The I2C address of the FRAM memory chip (1010+A2+A1+A0)
@params[in] framAddr
The 16-bit address to write to in FRAM memory
@params[in] value
One byte to write
@returns
return code of Wire.endTransmission()
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::writeByte (uint16_t framAddr, uint8_t value)
{
uint8_t buffer[] = {value};
return FRAM_MB85RC_I2C::writeArray(framAddr, 1, buffer);
}
/**************************************************************************/
/*!
@brief Reads an array of bytes from the specified FRAM address
@params[in] i2cAddr
The I2C address of the FRAM memory chip (1010+A2+A1+A0)
@params[in] framAddr
The 16-bit address to read from in FRAM memory
@params[in] items
number of items to read from memory chip
@params[out] values[]
array to be filled in by the memory read
@returns
return code of Wire.endTransmission()
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::readArray (uint16_t framAddr, byte items, uint8_t values[])
{
if ((framAddr >= maxaddress) || ((framAddr + (uint16_t) items - 1) >= maxaddress)) return ERROR_11;
byte result;
if (items == 0) {
result = ERROR_8; //number of bytes asked to read null
}
else {
FRAM_MB85RC_I2C::I2CAddressAdapt(framAddr);
result = Wire.endTransmission();
Wire.requestFrom(chipaddress, (uint8_t)items);
for (byte i=0; i < items; i++) {
values[i] = Wire.read();
}
}
return result;
}
/**************************************************************************/
/*!
@brief Reads one byte from the specified FRAM address
@params[in] i2cAddr
The I2C address of the FRAM memory chip (1010+A2+A1+A0)
@params[in] framAddr
The 16-bit address to read from in FRAM memory
@params[out] *values
data read from memory
@returns
return code of Wire.endTransmission()
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::readByte (uint16_t framAddr, uint8_t *value)
{
uint8_t buffer[1];
byte result = FRAM_MB85RC_I2C::readArray(framAddr, 1, buffer);
*value = buffer[0];
return result;
}
/**************************************************************************/
/*!
@brief Copy a byte from one address to another in the memory scope
@params[in] i2cAddr
The I2C address of the FRAM memory chip (1010+A2+A1+A0)
@params[in] origAddr
The 16-bit address to read from in FRAM memory
@params[in] destAddr
The 16-bit address to write in FRAM memory
@returns
return code of Wire.endTransmission()
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::copyByte (uint16_t origAddr, uint16_t destAddr)
{
uint8_t buffer[1];
byte result = FRAM_MB85RC_I2C::readByte(origAddr, buffer);
result = FRAM_MB85RC_I2C::writeByte(destAddr, buffer[0]);
return result;
}
/**************************************************************************/
/*!
@brief Reads one bit from the specified FRAM address
@params[in] framAddr
The 16-bit address to read from in FRAM memory
@params[in] bitNb
The bit position to read
@params[out] *bit
value of the bit: 0 | 1
@returns
return code of Wire.endTransmission()
return code 9 if bit position is larger than 7
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::readBit(uint16_t framAddr, uint8_t bitNb, byte *bit)
{
byte result;
if (bitNb > 7) {
result = ERROR_9;
}
else {
uint8_t buffer[1];
result = FRAM_MB85RC_I2C::readArray(framAddr, 1, buffer);
*bit = bitRead(buffer[0], bitNb);
}
return result;
}
/**************************************************************************/
/*!
@brief Set one bit to the specified FRAM address
@params[in] framAddr
The 16-bit address to read from in FRAM memory
@params[in] bitNb
The bit position to set
@returns
return code of Wire.endTransmission()
return code 9 if bit position is larger than 7
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::setOneBit(uint16_t framAddr, uint8_t bitNb)
{
byte result;
if (bitNb > 7) {
result = ERROR_9;
}
else {
uint8_t buffer[1];
result = FRAM_MB85RC_I2C::readArray(framAddr, 1, buffer);
bitSet(buffer[0], bitNb);
result = FRAM_MB85RC_I2C::writeArray(framAddr, 1, buffer);
}
return result;
}
/**************************************************************************/
/*!
@brief Clear one bit to the specified FRAM address
@params[in] framAddr
The 16-bit address to read from in FRAM memory
@params[in] bitNb
The bit position to clear
@returns
return code of Wire.endTransmission()
return code 9 if bit position is larger than 7
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::clearOneBit(uint16_t framAddr, uint8_t bitNb)
{
byte result;
if (bitNb > 7) {
result = ERROR_9;
}
else {
uint8_t buffer[1];
result = FRAM_MB85RC_I2C::readArray(framAddr, 1, buffer);
bitClear(buffer[0], bitNb);
result = FRAM_MB85RC_I2C::writeArray(framAddr, 1, buffer);
}
return result;
}
/**************************************************************************/
/*!
@brief Toggle one bit to the specified FRAM address
@params[in] framAddr
The 16-bit address to read from in FRAM memory
@params[in] bitNb
The bit position to toggle
@returns
return code of Wire.endTransmission()
return code 9 if bit position is larger than 7
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::toggleBit(uint16_t framAddr, uint8_t bitNb)
{
byte result;
if (bitNb > 7) {
result = ERROR_9;
}
else {
uint8_t buffer[1];
result = FRAM_MB85RC_I2C::readArray(framAddr, 1, buffer);
if ( (buffer[0] & (1 << bitNb)) == (1 << bitNb) )
{
bitClear(buffer[0], bitNb);
}
else {
bitSet(buffer[0], bitNb);
}
result = FRAM_MB85RC_I2C::writeArray(framAddr, 1, buffer);
}
return result;
}
/**************************************************************************/
/*!
@brief Reads a 16bits value from the specified FRAM address
@params[in] framAddr
The 16-bit address to read from in FRAM memory
@params[out] value
16bits word
@returns
return code of Wire.endTransmission()
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::readWord(uint16_t framAddr, uint16_t *value)
{
uint8_t buffer[2];
byte result = FRAM_MB85RC_I2C::readArray(framAddr, 2, buffer);
*value = *reinterpret_cast<uint16_t *>(buffer);
return result;
}
/**************************************************************************/
/*!
@brief Write a 16bits value from the specified FRAM address
@params[in] framAddr
The 16-bit address to read from in FRAM memory
@params[in] value
16bits word
@returns
return code of Wire.endTransmission()
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::writeWord(uint16_t framAddr, uint16_t value)
{
uint8_t *buffer = reinterpret_cast<uint8_t *>(&value);
return FRAM_MB85RC_I2C::writeArray(framAddr, 2, buffer);
}
/**************************************************************************/
/*!
@brief Read a 32bits value from the specified FRAM address
@params[in] framAddr
The 16-bit address to read from FRAM memory
@params[in] value
32bits word
@returns
return code of Wire.endTransmission()
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::readLong(uint16_t framAddr, uint32_t *value)
{
uint8_t buffer[4];
byte result = FRAM_MB85RC_I2C::readArray(framAddr, 4, buffer);
*value = *reinterpret_cast<uint32_t *>(buffer);
return result;
}
/**************************************************************************/
/*!
@brief Write a 32bits value to the specified FRAM address
@params[in] framAddr
The 16-bit address to write to FRAM memory
@params[in] value
32bits word
@returns
return code of Wire.endTransmission()
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::writeLong(uint16_t framAddr, uint32_t value)
{
uint8_t *buffer = reinterpret_cast<uint8_t *>(&value);
return FRAM_MB85RC_I2C::writeArray(framAddr, 4, buffer);
}
/**************************************************************************/
/*!
@brief Reads the Manufacturer ID and the Product ID frm the IC
@params[in] idtype
1: Manufacturer ID, 2: ProductID, 3:density code, 4:density
@params[out] *id
The 16 bits ID value
@returns
0: success
1: error
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::getOneDeviceID(uint8_t idType, uint16_t *id)
{
byte result;
const uint8_t manuf = 1;
const uint8_t prod = 2;
const uint8_t densc = 3;
const uint8_t densi = 4;
switch (idType) {
case manuf:
*id = manufacturer;
result = ERROR_0;
break;
case prod:
*id = productid;
result = ERROR_0;
break;
case densc:
*id = densitycode;
result = ERROR_0;
break;
case densi:
*id = density;
result = ERROR_0;
break;
default:
*id = 0;
result = ERROR_5;
break;
}
return result;
}
/**************************************************************************/
/*!
@brief Return the readiness of the memory chip
@params[in] none
@returns
boolean
true : ready
false : not ready
*/
/**************************************************************************/
boolean FRAM_MB85RC_I2C::isReady(void) {
return _framInitialised;
}
/**************************************************************************/
/*!
@brief Return tu Write Protect status
@params[in] none
@returns
boolean
true : write protect enabled
false: wirte protect disabled
*/
/**************************************************************************/
boolean FRAM_MB85RC_I2C::getWPStatus(void) {
return wpStatus;
}
/**************************************************************************/
/*!
@brief Enable write protect function of the chip by pulling up WP pin
@params[in] MANAGE_WP
WP management switch defined in header file
@params[in] wpPin
pin number for WP pin
@param[out] wpStatus
@returns
0: success
1: error, WP not managed
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::enableWP(void) {
byte result;
if (MANAGE_WP) {
digitalWrite(wpPin,HIGH);
wpStatus = true;
result = ERROR_0;
}
else {
result = ERROR_10;
}
return result;
}
/**************************************************************************/
/*!
@brief Disable write protect function of the chip by pulling up WP pin
@params[in] MANAGE_WP
WP management switch defined in header file
@params[in] wpPin
pin number for WP pin
@param[out] wpStatus
@returns
0: success
1: error, WP not managed
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::disableWP() {
byte result;
if (MANAGE_WP) {
digitalWrite(wpPin,LOW);
wpStatus = false;
result = ERROR_0;
}
else {
result = ERROR_10;
}
return result;
}
/**************************************************************************/
/*!
@brief Erase device by overwriting it to 0x00
@params[in] SERIAL_DEBUG
Outputs erasing results to Serial
@returns
0: success
1-4: error writing at a certain position
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::eraseDevice(void) {
byte result = 0;
uint16_t i = 0;
#ifdef SERIAL_DEBUG
if (Serial){
Serial.println("Start erasing device");
}
#endif
while((i < maxaddress) && (result == 0)){
result = FRAM_MB85RC_I2C::writeByte(i, 0x00);
i++;
}
#if defined(SERIAL_DEBUG) && (SERIAL_DEBUG == 1)
if (Serial){
if (result !=0) {
Serial.print("ERROR: device erasing stopped at position ");
Serial.println(i, DEC);
Serial.println("...... ...... ......");
}
else {
Serial.println("device erased");
Serial.println("...... ...... ......");
}
}
#endif
return result;
}
/*========================================================================*/
/* PRIVATE FUNCTIONS */
/*========================================================================*/
/**************************************************************************/
/*!
@brief Reads the Manufacturer ID and the Product ID from the IC and populate class' variables for devices supporting that feature
@params[in] none
@params[out] manufacturerID
The 12-bit manufacturer ID (Fujitsu = 0x00A)
@params[out] productID
The memory density (bytes 11..8) and proprietary
Product ID fields (bytes 7..0). Should be 0x510 for
the MB85RC256V for instance.
@param[out] The memory densitycode (bytes 11..8)
from 0x03 (64K chip) to 0x07 (1M chip)
@param[out] The memory density got from density code
from 64 to 1024K
@param[out] The memory max address of storage slot
@returns
return code of Wire.endTransmission() or interpreted error.
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::getDeviceIDs(void)
{
uint8_t localbuffer[3] = { 0, 0, 0 };
uint8_t result;
/* Get device IDs sequence */
/* 1/ Send 0xF8 to the I2C bus as a write instruction. bit 0: 0 => 0xF8 >> 1 */
/* Send 0xF8 to 12C bus. Bit shift to right as beginTransmission() requires a 7bit. beginTransmission() 0 for write => 0xF8 */
/* Send device address as 8 bits. Bit shift to left as we are using a simple write() */
/* Send 0xF9 to I2C bus. By requesting 3 bytes to read, requestFrom() add a 1 bit at the end of a 7 bits address => 0xF9 */
/* See p.10 of http://www.fujitsu.com/downloads/MICRO/fsa/pdf/products/memory/fram/MB85RC-DS501-00017-3v0-E.pdf */
Wire.beginTransmission(MASTER_CODE >> 1);
Wire.write((byte)(i2c_addr << 1));
result = Wire.endTransmission(false);
Wire.requestFrom(MASTER_CODE >> 1, 3);
localbuffer[0] = (uint8_t) Wire.read();
localbuffer[1] = (uint8_t) Wire.read();
localbuffer[2] = (uint8_t) Wire.read();
/* Shift values to separate IDs */
manufacturer = (localbuffer[0] << 4) + (localbuffer[1] >> 4);
densitycode = (uint16_t)(localbuffer[1] & 0x0F);
productid = ((localbuffer[1] & 0x0F) << 8) + localbuffer[2];
if (manufacturer == FUJITSU_MANUFACT_ID) {
switch (densitycode) {
case DENSITY_MB85RC04V:
density = 4;
maxaddress = MAXADDRESS_04;
break;
case DENSITY_MB85RC64TA:
density = 64;
maxaddress = MAXADDRESS_64;
break;
case DENSITY_MB85RC256V:
density = 256;
maxaddress = MAXADDRESS_256;
break;
case DENSITY_MB85RC512T:
density = 512;
maxaddress = MAXADDRESS_512;
break;
case DENSITY_MB85RC1MT:
density = 1024;
maxaddress = MAXADDRESS_1024;
break;
default:
density = 0; /* means error */
maxaddress = 0; /* means error */
if (result == 0) result = ERROR_7; /*device unidentified, comminication ok*/
break;
}
}
else if (manufacturer == CYPRESS_MANUFACT_ID) {
switch (densitycode) {
case DENSITY_CY15B128J:
density = 128;
maxaddress = MAXADDRESS_128;
break;
case DENSITY_CY15B256J:
density = 256;
maxaddress = MAXADDRESS_256;
break;
case DENSITY_FM24V05:
density = 512;
maxaddress = MAXADDRESS_512;
break;
case DENSITY_FM24V10:
density = 1024;
maxaddress = MAXADDRESS_1024;
break;
default:
density = 0; /* means error */
maxaddress = 0; /* means error */
if (result == 0) result = ERROR_7; /*device unidentified, comminication ok*/
break;
}
}
else {
density = 0; /* means error */
maxaddress = 0; /* means error */
if (result == 0) result = ERROR_7; /*device unidentified, comminication ok*/
}
return result;
}
/**************************************************************************/
/*!
@brief set devices IDs for chip that does not support the feature as this has not been implemented in every chips by manufacturers
@params[in] none
@params[out] manufacturerID set as "manual mode"
@param[out] The memory max address of storage slot
@returns
return Error_0, Error_7, ERROR_10 codes
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::setDeviceIDs(void)
{
if(_manualMode) {
switch(density) {
case 4:
maxaddress = MAXADDRESS_04;
break;
case 16:
maxaddress = MAXADDRESS_16;
break;
case 64:
maxaddress = MAXADDRESS_64;
break;
case 128:
maxaddress = MAXADDRESS_128;
break;
case 256:
maxaddress = MAXADDRESS_256;
break;
case 512:
maxaddress = MAXADDRESS_512;
break;
case 1024:
maxaddress = MAXADDRESS_1024;
break;
default:
maxaddress = 0; /* means error */
break;
}
densitycode = MANUALMODE_DENSITY_ID;
productid = MANUALMODE_PRODUCT_ID;
manufacturer = MANUALMODE_MANUFACT_ID;
if (maxaddress !=0) {
return ERROR_0;
}
else {
return ERROR_7;
}
}
else {
return ERROR_10;
}
}
/**************************************************************************/
/*!
@brief Utility function to print out memory chip IDs to serial if Debug enabled
@params[in] SERIAL_DEBUG
@param[out] none
@returns
0: success
4: error, debug not activated or Serial not available
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::deviceIDs2Serial(void) {
byte result = ERROR_4;
#if defined(SERIAL_DEBUG) && (SERIAL_DEBUG == 1)
if (Serial){
Serial.println("FRAM Device IDs");
Serial.print("Manufacturer 0x"); Serial.println(manufacturer, HEX);
Serial.print("ProductID 0x"); Serial.println(productid, HEX);
Serial.print("Density code 0x"); Serial.println(densitycode, HEX);
Serial.print("Density "); Serial.print(density, DEC); Serial.println("K");
if ((manufacturer != MANUALMODE_MANUFACT_ID) && (density > 0)) Serial.println("Device identfied automatically");
if ((manufacturer == MANUALMODE_MANUFACT_ID) && (density > 0)) Serial.println("Device properties set");
Serial.println("...... ...... ......");
result = ERROR_0;
}
#endif
return result;
}
/**************************************************************************/
/*!
@brief Init write protect function for class constructor
@params[in] MANAGE_WP
WP management switch defined in header file
@params[in] wpPin
pin number for WP pin
@params[in] wp
Boolean for startup WP
@param[out] wpStatus
@returns
0: success, init done
1: error - should never happen
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::initWP(boolean wp) {
byte result;
if (MANAGE_WP) {
pinMode(wpPin,OUTPUT);
if (wp) {
result = FRAM_MB85RC_I2C::enableWP();
}
else {
result = FRAM_MB85RC_I2C::disableWP();
}
}
else {
wpStatus = false;
result = ERROR_0;
}
return result;
}
/**************************************************************************/
/*!
@brief Adapts the I2C calls (chip address + memory pointer) according to chip datasheet
4K chips : 1 MSB of memory address as LSB of device address + 8 bits memory address
16K chips : 3 MSB of memory address as LSB of device address + 8 bits memory address
64K and more chips : full chipp address & 16 bits memory address
@params[in] address : memory address
@param[out] none
@returns void
*/
/**************************************************************************/
void FRAM_MB85RC_I2C::I2CAddressAdapt(uint16_t framAddr) {
//uint16_t chipaddress;
switch(density) {
case 4:
chipaddress = (i2c_addr | ((framAddr >> 8) & 0x1));
break;
case 16:
chipaddress = (i2c_addr | ((framAddr >> 8) & 0x7));
break;
default:
chipaddress = i2c_addr;
break;
}
#if defined(SERIAL_DEBUG) && (SERIAL_DEBUG == 1)
Serial.print("Calculated address 0x");
Serial.println(chipaddress, HEX);
#endif
if (density < 64) {
Wire.beginTransmission(chipaddress);
Wire.write(framAddr & 0xFF);
}
else {
Wire.beginTransmission(chipaddress);
Wire.write(framAddr >> 8);
Wire.write(framAddr & 0xFF);
}
return;
}
/**************************************************************************/
/*!
@brief Read a 32bits value from the specified FRAM address
@params[in] framAddr
The 16-bit address to read from FRAM memory
@params[in] value
32bits word
@returns
return code of Wire.endTransmission()
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::readFloat(uint16_t framAddr, float *value)
{
uint8_t buffer[4];
byte result = FRAM_MB85RC_I2C::readArray(framAddr, 4, buffer);
*value = *reinterpret_cast<float *>(buffer);
return result;
}
/**************************************************************************/
/*!
@brief Write a 32bits value to the specified FRAM address
@params[in] framAddr
The 16-bit address to write to FRAM memory
@params[in] value
32bits word
@returns
return code of Wire.endTransmission()
*/
/**************************************************************************/
byte FRAM_MB85RC_I2C::writeFloat(uint16_t framAddr, float value)
{
uint8_t *buffer = reinterpret_cast<uint8_t *>(&value);
return FRAM_MB85RC_I2C::writeArray(framAddr, 4, buffer);
}