forked from embeddedprojects/gnublin-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgnublin.cpp
7526 lines (6710 loc) · 185 KB
/
gnublin.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
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//********************************************
//GNUBLIN API -- MAIN FILE
//build date: 04/15/14 05:29
//********************************************
#include "gnublin.h"
//Converting string to number
int stringToNumber(std::string str){
std::stringstream strin;
int var;
strin << str;
strin >> var;
return var;
}
//Converting a number to string
std::string numberToString(int num){
std::ostringstream strout;
std::string str;
strout << num;
str = strout.str();
return str;
}
//Converting string wich repesenting a hexnumber to number
int hexstringToNumber(std::string str){
std::stringstream strin;
int var;
strin << std::hex << str;
strin >> var;
return var;
}
/** @~english
* @brief Reset the ErrorFlag.
*
* @~german
* @brief Setzt das ErrorFlag zurück.
*
*/
gnublin_gpio::gnublin_gpio(){
error_flag = false;
}
/** @~english
* @brief Removes the GPIO.
*
* Removes the GPIO from the filesystem, after that, you cannot access the pin.
* @return bool error_flag
*
* @~german
* @brief Entferne GPIO
*
* Entfernt den GPIO aus dem Filesystem, es kann kein Zugriff mehr auf diesen erfolgen.
* @return bool error_flag
*/
int gnublin_gpio::unexport(int pin){
std::string pin_str = numberToString(pin);
std::string dir = "/sys/class/gpio/unexport";
std::ofstream file (dir.c_str());
if (file < 0) {
error_flag = true;
return -1;
}
file << pin_str;
file.close();
error_flag = false;
return 1;
}
/** @~english
* @brief Returns the error flag.
*
* If something went wrong, the flag is true.
* @return bool error_flag
*
* @~german
* @brief Gibt das Error Flag zurück.
*
* Falls das Error Flag in der Klasse gesetzt wurde, wird true zurück gegeben, anderenfalls false.
* @return bool error_flag
*/
bool gnublin_gpio::fail(){
return error_flag;
}
/** @~english
* @brief Get the last Error Message.
*
* This Funktion returns the last Error Message, which occurred in that Class.
* @return ErrorMessage as c-string
*
* @~german
* @brief Gibt die letzte Error Nachricht zurück.
*
* Diese Funktion gibt die Letzte Error Nachricht zurück, welche in dieser Klasse gespeichert wurde.
* @return ErrorMessage als c-string
*/
const char *gnublin_gpio::getErrorMessage(){
return ErrorMessage.c_str();
}
/** @~english
* @brief Change the PinMode.
*
* With this function you can set the pin as input or output. <br>
* This must be done before all other operations. <br><br>
* Hint: GPIO 4 can only be used as output.
* @param pin Pin number to change the mode
* @param direction direction of the pin (OUTPUT, INPUT)
* @return success: 1, failure: -1
*
* @~german
* @brief Pin Modi festlegen.
*
* Mit dieser Funktion kann der Modi des Pins festgelegt werden, also ob er als Eingang oder Ausgang genutzt werden soll. <br>
* Vor allen anderen Zugriffen muss diese Funktion ausgeführt werden. <br> <br>
* Hinweis: GPIO 4 kann auf dem GNUBLIN board nur als Ausgang genutzt werden.
* @param pin Nummer des GPIO-Pins
* @param direction Richtung des Pins (OUTPUT, INPUT)
* @return Erfolg: 1, Fehler: -1
*/
int gnublin_gpio::pinMode(int pin, std::string direction){
#if (BOARD != RASPBERRY_PI && BEAGLEBONE_BLACK)
if (pin == 4 && direction == "out"){
error_flag = true;
return -1;
}
#endif
std::string pin_str = numberToString(pin);
std::string dir = "/sys/class/gpio/export";
std::ofstream file (dir.c_str());
if (file < 0) {
error_flag = true;
return -1;
}
file << pin;
file.close();
dir = "/sys/class/gpio/gpio" + pin_str + "/direction";
file.open(dir.c_str());
if (file < 0) {
error_flag = true;
return -1;
}
file << direction;
file.close();
error_flag = false;
return 1;
}
/** @~english
* @brief Write Pin.
*
* Set the Pin to the given value.
* @param pin Pin number to change the mode
* @param value Value of the Pin (LOW, HIGH)
* @return success: 1, failure: -1
*
* @~german
* @brief Pin schreiben.
*
* Den GPIO-Pin auf einen bestimmten Wert setzen.
* @param pin Nummer des entsprechenden GPIO-Pins
* @param value Wert auf den der Pin gesetzt werden soll (LOW, HIGH)
* @return Erfolg: 1, Fehler: -1
*/
int gnublin_gpio::digitalWrite(int pin, int value){
#if (BOARD != RASPBERRY_PI && BEAGLEBONE_BLACK)
if (pin == 4){
error_flag = true;
return -1;
}
#endif
if (value != 0 && value != 1){
error_flag = true;
return -1;
}
std::string value_str = numberToString(value);
std::string pin_str = numberToString(pin);
std::string dir = "/sys/class/gpio/gpio" + pin_str + "/value";
std::ofstream file (dir.c_str());
if (file < 0) {
error_flag = true;
return -1;
}
file << value_str;
file.close();
error_flag = false;
return 1;
}
/** @~english
* @brief Read Pin.
*
* Reads the value of the given pin.
* @param pin Pin number to read
* @return Value of the GPIO-Pin (0,1), -1 in case of failure
*
* @~german
* @brief Pin lesen.
*
* Abfragen des GPIO-Wertes.
* @param pin Nummer des entsprechenden GPIO-Pins
* @return Wert des GPIO-Pins (0,1), -1 im Fehlerfall
*/
int gnublin_gpio::digitalRead(int pin) {
std::string value;
std::string pin_str = numberToString(pin);
std::string device = "/sys/class/gpio/gpio" + pin_str + "/value";
std::ifstream file(device.c_str());
if (file < 0){
error_flag = true;
return -1;
}
file >> value;
file.close();
error_flag = false;
return stringToNumber(value);
}
//*******************************************************************
//Class for accessing GNUBLIN i2c Bus
//*******************************************************************
//------------------local defines-----------------
/** @~english
* @brief creates macro reference for default device "/dev/i2c-1"
*
* @~german
* @brief definiert das Standard i2c device "/dev/i2c-1"
*
*/
#define DEFAULTDEVICE "/dev/i2c-1"
//------------------Konstruktor------------------
/** @~english
* @brief initalizes the i2c bus. Sets the devicefile to "/dev/i2c-1"
*
* @~german
* @brief initialisiert den i2c Bus. Setzt das standard i2c device auf "/dev/i2c-1"
*
*/
gnublin_i2c::gnublin_i2c()
{
init(DEFAULTDEVICE, -1);
}
//------------------Konstruktor------------------
/** @~english
* @brief initalizes the i2c bus. Sets the devicefile to "/dev/i2c-1"
* @param Address new I2C slave adress
*
* @~german
* @brief initialisiert den i2c Bus. Setzt das standard i2c device auf "/dev/i2c-1"
* @param Address neue I2C slave Adresse
*
*/
gnublin_i2c::gnublin_i2c(int Address)
{
init(DEFAULTDEVICE, Address);
}
//------------------Konstruktor------------------
/** @~english
* @brief initalizes the i2c bus.
* @param Devicefile new I2C device file, e.g. "/dev/i2c-2"
* @param Address new I2C slave adress
*
* @~german
* @brief initialisiert den i2c Bus.
* @param Devicefile neues I2C device file, z.B. "/dev/i2c-2"
* @param Address neue I2C slave Adresse
*
*/
gnublin_i2c::gnublin_i2c(std::string Devicefile, int Address)
{
init(Devicefile, Address);
}
//------------------destructor------------------
/** @~english
* @brief Closes the file handle
*
* @~german
* @brief Schließt die Datei
*
*/
gnublin_i2c::~gnublin_i2c()
{
close_fd();
}
//------------------init------------------
/** @~english
* @brief Called by the constructors to initialize class variables.
* @param Devicefile new I2C device file, e.g. "/dev/i2c-2"
* @param Address new I2C slave adress
*
* @~german
* @brief Wird von den Konstruktoren der Klasse aufgerufen um die Variablen zu initialisieren.
* @param Devicefile neues I2C device file, z.B. "/dev/i2c-2"
* @param Address neue I2C slave Adresse
*
*/
void gnublin_i2c::init(std::string Devicefile, int Address)
{
devicefile=Devicefile;
slave_address = Address;
error_flag=false;
fd = 0;
}
//------------------error messaging------------------
/** @~english
* @brief Called by the send and receive Methods when an Error occures
*
* @param message String contents that describe the error.
* @return -1
*
* @~german
* @brief Wird von den send und receive Methoden aufgerufen, wenn ein Fehler auftritt
*
* @param message String der den Fehler beschreibt.
* @return -1
*
*/
int gnublin_i2c::errorMsg(std::string message)
{
ErrorMessage=message;
error_flag=true;
close_fd();
return -1;
}
//------------------close file descriptor------------------
/** @~english
* @brief Closes the file if open and resets the variable.
*
* @~german
* @brief Schließt die Datei wenn sie offen ist und setzt die Variable zurück.
*
*/
void gnublin_i2c::close_fd()
{
if (fd) {
close(fd);
fd = 0;
}
}
//------------------open file descriptor------------------
/** @~english
* @brief Opens the devicefile. If a file is already open it is closed first. A new file is opened
* and io operations defined based on the class values for devicefile
* and slave_address.
*
* @return success: 0, failure: -1
*
* @~german
* @brief Öffnet die Geräte Datei. Wenn eine Datei bereits geöffnet ist, wird sie zunächst geschlossen.
* Eine neue Datei wird geöffnet und IO-Operationen werden auf Basis der Klassenvariablen
* devicefile und slave_address definiert.
*
* @return Erfolg: 0, Misserfolg: -1
*
*/
int gnublin_i2c::open_fd()
{
error_flag = false;
if (fd) {
close_fd();
fd = 0;
}
if (slave_address == -1)
return errorMsg("ERROR slave address is not set\n");
if ((fd = open(devicefile.c_str(), O_RDWR)) < 0)
return errorMsg("ERROR opening: " + devicefile + "\n");
if (ioctl(fd, I2C_SLAVE, slave_address) < 0)
return errorMsg("ERROR address: " + numberToString(slave_address) + "\n");
return 0;
}
//-------------------------------Fail-------------------------------
/** @~english
* @brief returns the error flag to check if the last operation went wrong
*
* @return error_flag as boolean
*
* @~german
* @brief Gibt das error_flag zurück um zu überprüfen ob die vorangegangene Operation einen Fehler auweist
*
* @return error_flag als bool
*/
bool gnublin_i2c::fail(){
return error_flag;
}
//-------------set Address-------------
/** @~english
* @brief Set the i2c slave address
*
* With this function you can set the individual I2C Slave-Address.
* @param Address new I2C slave Address
* @return failure: -1
*
* @~german
* @brief Setzt die i2c slave Adresse
*
* Mit dieser Funktion kann die individuelle I2C Slave-Adresse gesetzt werden.
* @param Address neue I2C slave Adresse
* @return failure: -1
*/
int gnublin_i2c::setAddress(int Address){
slave_address = Address;
return open_fd();
}
//-------------get Address-------------
/** @~english
* @brief Get the i2c slave address
*
* With this function you can get the set Slave-Address.
* @return Address I2C slave Address
*
* @~german
* @brief gibt die gesetzte I2C Slave Adresse zurück
*
* Mit dieser Funktion kann die gesetzte I2C Slave-Adresse ausgelesen werden.
* @return Address I2C slave Address
*/
int gnublin_i2c::getAddress(){
return slave_address;
}
//-------------get Error Message-------------
/** @~english
* @brief Get the last Error Message.
*
* This function returns the last Error Message, which occurred in that Class.
* @return ErrorMessage as c-string
*
* @~german
* @brief Gibt die letzte Error Nachricht zurück.
*
* Diese Funktion gibt die Letzte Error Nachricht zurück, welche in dieser Klasse gespeichert wurde.
* @return ErrorMessage als c-string
*/
const char *gnublin_i2c::getErrorMessage(){
return ErrorMessage.c_str();
}
//-------------------set devicefile----------------
/** @~english
* @brief set i2c the device file. default is "/dev/i2c-1"
*
* This function sets the devicefile you want to access. by default "/dev/i2c-1" is set.
* @param filename path to the devicefile e.g. "/dev/i2c-0"
* @return failure: -1
*
* @~german
* @brief setzt die I2C Device Datei. Standard ist die "/dev/i2c-1"
*
* Diese Funktion setzt die Geräte Datei, auf die man zugreifen möchte. Standardmäßig ist bereits "/dev/i2c-1" gesetzt.
* @param filename Dateipfad zur Geräte Datei, z.B. "/dev/i2c-0"
* @return failure: -1
*/
int gnublin_i2c::setDevicefile(std::string filename){
devicefile = filename;
return open_fd();
}
//----------------------------------receive----------------------------------
/** @~english
* @brief receive bytes from the I2C bus.
*
* This function reads "length" number of bytes from the i2c bus and stores them into the "RxBuf". At success the function returns 1, on failure -1.<br>
* e.g.<br>
* read 2 bytes into buf<br>
* receive(buf, 2);
* @param RxBuf Receive buffer. The read bytes will be stored in it.
* @param length Amount of bytes that will be read.
* @return success: 1, failure: -1
*
* @~german
* @brief Empfängt Bytes vom I2C Bus.
*
* Diese Funktion liest "length" Anzahl an Bytes vom I2C Bus und speichert diese in "RxBuf". Bei Erfolg wird 1 zurück gegeben, bei Misserfolg -1.<br>
* Beispiele:<br>
* Lese 2 Bytes und speichere diese in "buf":<br>
* receive(buf, 2);
* @param RxBuf Empfangs Puffer. Die gelesenen Bytes werden hier gespeichert.
* @param length Anzahl der zu lesenden Bytes.
* @return Erfolg: 1, Misserfolg: -1
*/
int gnublin_i2c::receive(unsigned char *RxBuf, int length){
if (RxBuf == 0)
return errorMsg("Receive method received a null TxBuf pointer.\n");
if (length < 1)
return errorMsg("Receive method received an invalid buffer length.\n");
if (!fd)
if (open_fd() == -1)
return -1;
error_flag=false;
if (read(fd, RxBuf, length) != length)
return errorMsg("i2c read error! Address: " + numberToString(slave_address) + " dev file: " + devicefile + "\n");
return 1;
}
//----------------------------------receive----------------------------------
/** @~english
* @brief receive bytes from the I2C bus.
*
* This function reads "length" number of bytes from the register "RegisterAddress" and stores them into the "RxBuf". At success the function returns 1, on failure -1.<br>
* e.g.<br>
* read 2 bytes into buf<br>
* receive(buf, 2);<br><br>
*
* read 3 bytes into buf from a register with the address 0x12<br>
* receive(0x12, buf, 3);
* @param RegisterAddress Address of the register you want to read from
* @param RxBuf Receive buffer. The read bytes will be stored in it.
* @param length Amount of bytes that will be read.
* @return success: 1, failure: -1
*
* @~german
* @brief Empfängt Bytes vom I2C Bus.
*
* Diese Funktion liest "length" Anzahl an Bytes aus dem Register "RegisterAddress" und speichert diese in "RxBuf". Bei Erfolg wird 1 zurück gegeben, bei Misserfolg -1.<br>
* Beispiele:<br>
* Lese 2 Bytes und speichere diese in "buf":<br>
* receive(buf, 2);<br><br>
*
* Lese 3 Bytes aus Register 0x12 und speichere sie in "buf":<br>
* receive(0x12, buf, 3);
* @param RegisterAddress Adresse des zu lesenden Registers.
* @param RxBuf Empfangs Puffer. Die gelesenen Bytes werden hier gespeichert.
* @param length Anzahl der zu lesenden Bytes.
* @return Erfolg: 1, Misserfolg: -1
*/
int gnublin_i2c::receive(unsigned char RegisterAddress, unsigned char *RxBuf, int length){
if (RxBuf == 0)
return errorMsg("Receive method received a null TxBuf pointer.\n");
if (length < 1)
return errorMsg("Receive method received an invalid buffer length.\n");
if (!fd)
if (open_fd() == -1)
return -1;
error_flag=false;
if (write(fd, &RegisterAddress, 1) != 1)
return errorMsg("i2c write error!\n");
if (read(fd, RxBuf, length) != length)
return errorMsg("i2c read error! Address: " + numberToString(slave_address) + " dev file: " + devicefile + "\n");
return 1;
}
//----------------------------------send----------------------------------
/** @~english
* @brief send bytes to the I2C bus.
*
* This function sends "length" number of bytes from the "TxBuf" to the i2c bus. At success the function returns 1, on failure -1.<br>
* e.g.<br>
* send 2 bytes from buf to the I2C bus<br>
* send (buf, 2);
* @param TxBuf Transmit buffer. The bytes you want to send are stored in it.
* @param length Amount of bytes that will be send.
* @return success: 1, failure: -1
*
* @~german
* @brief sendet Bytes an den I2C Bus.
*
* Diese Funktion sendet "length" Anzahl an Bytes aus dem "TxBuf" an den I2C Bus. Bei Erfolg wird 1 zurück gegeben, bei Misserfolg -1.<br>
* Beispiele:<br>
* Sende 2 Bytes von "buf" an den i2c Bus:
* send(buf, 2);
* @param RxBuf Sende Puffer. Die zu sendenden Bytes sind hier gespeichert.
* @param length Anzahl der zu sendenden Bytes.
* @return Erfolg: 1, Misserfolg: -1
*/
int gnublin_i2c::send(unsigned char *TxBuf, int length){
if (TxBuf == 0)
return errorMsg("Send method received a null TxBuf pointer.\n");
if (length < 1)
return errorMsg("Send method received an invalid buffer length.\n");
if (!fd)
if (open_fd() == -1)
return -1;
error_flag=false;
if(write(fd, TxBuf, length) != length)
return errorMsg("i2c write error!\n");
return 1;
}
//----------------------------------send----------------------------------
/** @~english
* @brief send bytes to the I2C bus.
*
* This function sends "length" number of bytes from the "TxBuf" to the register "RegisterAddress". At success the function returns 1, on failure -1.<br>
* e.g.<br>
* send 2 bytes from buf to the I2C bus<br>
* send (buf, 2);<br><br>
*
* send 3 bytes from buf to a register with the address 0x12<br>
* send (0x12, buf, 3);
* @param RegisterAddress Address of the register you want to send the bytes to
* @param TxBuf Transmit buffer. The bytes you want to send are stored in it.
* @param length Amount of bytes that will be send.
* @return success: 1, failure: -1
*
* @~german
* @brief sendet Bytes an den I2C Bus.
*
* Diese Funktion sendet "length" Anzahl an Bytes aus dem "TxBuf" an das Register "RegisterAddress". Bei Erfolg wird 1 zurück gegeben, bei Misserfolg -1.<br>
* Beispiele:<br>
* Sende 2 Bytes von "buf" an den i2c Bus:
* send(buf, 2);<br><br>
*
* Sende 3 Bytes aus "buf" an das Register mit der Adresse 0x12:<br>
* send(0x12, buf, 3);
* @param RegisterAddress Adresse des Registers in das man schreiben will.
* @param RxBuf Sende Puffer. Die zu sendenden Bytes sind hier gespeichert.
* @param length Anzahl der zu sendenden Bytes.
* @return Erfolg: 1, Misserfolg: -1
*/
int gnublin_i2c::send(unsigned char RegisterAddress, unsigned char *TxBuf, int length){
int i;
unsigned char data[length+1];
data[0]=RegisterAddress;
for ( i = 0; i < length ; i++ ) {
data[i+1] = TxBuf[i];
}
if (TxBuf == 0)
return errorMsg("Send method received a null TxBuf pointer.\n");
if (length < 1)
return errorMsg("Send method received an invalid buffer length.\n");
if (!fd)
if (open_fd() == -1)
return -1;
error_flag=false;
/* if (send(RegisterAddress) == -1)
return -1;
*/
if(write(fd, data, length+1) != length+1)
return errorMsg("i2c write error!\n");
return 1;
}
//----------------------------------send----------------------------------
/** @~english
* @brief send a byte to the I2C bus.
*
* This function sends a byte to the i2c bus. At success the function returns 1, on failure -1.<br>
* e.g.<br>
* send 0xff to the I2C bus<br>
* send (0xff);
* @param value byte that will be send.
* @return success: 1, failure: -1
*
* @~german
* @brief sendet 1 Byte an den I2C Bus.
*
* Diese Funktion sendet ein byte an den i2c Bus. Bei Erfolg wird 1 zurück gegeben, bei Misserfolg -1.<br>
* Beispiel:<br>
* Sende 0xff an den i2c Bus:<br>
* send(0xff);
* @param value Byte das gesendet wird.
* @return Erfolg: 1, Misserfolg: -1
*/
int gnublin_i2c::send(unsigned char value){
if (!fd)
if (open_fd() == -1)
return -1;
error_flag=false;
if(write(fd, &value, 1) != 1)
return errorMsg("i2c write error!\n");
return 1;
}
//***************************************************************************
// Class for accessing the SPI-Bus
//***************************************************************************
/**
* @~english
* @brief Loads the standard SPI driver if necessary.
*
* Default chipselect:
* GNUBLIN: CS = 11
* RASPBERRY PI: CS = 0
* @~german
* @brief Die Standart SPI-Treiber werden geladen, wenn sie noch nicht vorhanden sind.
*
* Default chipselect:
* GNUBLIN: CS = 11
* RASPBERRY PI: CS = 0
* BEAGLEBONE BLACK: CS = 0
*/
gnublin_spi::gnublin_spi(){
error_flag = false;
#if (BOARD == RASPBERRY_PI)
std::string device = "/dev/spidev0.0";
#elif (BOARD == BEAGLEBONE_BLACK)
std::string device = "/dev/spidev1.0";
#else
std::string device = "/dev/spidev0.11";
#endif
fd = open(device.c_str(), O_RDWR);
if (fd < 0) {
#if BOARD == RASPBERRY_PI
system("modprobe spi-bcm2708");
#else
system("modprobe spidev cs_pin=11");
#endif
sleep(1);
fd = open(device.c_str(), O_RDWR);
}
}
//******************** destructor *******************************************
gnublin_spi::~gnublin_spi(){
close(fd);
}
//******************** fail() ***********************************************
/**
* @~english
* @brief Returns the errorflag to detect error in the previous called method.
*
* @return error_flag
*
* @~german
* @brief Gibt das errorflag zurück, um Fehler in der zuvor aufgerugfenen Methode zu erkennen.
*
* @return error_flag
*/
bool gnublin_spi::fail(){
return error_flag;
}
//-------------get Error Message-------------
/**
* @~english
* @brief Returns the ErrorMessage of the previous error if one exist.
*
* @return ErrorMessage as C-String
*
* @~german
* @brief Gibt die Fehlernachricht des zuvor aufgetretenen Fehlers zurück, wenn weine exisitert.
*
* @return ErrorMessage als C-String
*/
const char *gnublin_spi::getErrorMessage(){
return ErrorMessage.c_str();
}
//*********************** setCS *********************************************
/**
* @~english
* @brief Set the custom chipselect pin
*
* @param cs Number of the chipselect-pin
* @return 1 by success, -1 by failure
*
* @~german
* @brief Setzt den benutzerdefinierten Chipselect-Pin.
*
* @param cs Nummer des Chipselect-Pin
* @return 1 bei Erfolg, -1 im Fehlerfall
*/
int gnublin_spi::setCS(int cs){
std::string cs_str = numberToString(cs);
std::string device = "/dev/spidev0." + cs_str;
fd = open(device.c_str(), O_RDWR);
if (fd < 0) {
#if (BOARD == RASPBERRY_PI)
std::string command = "modprobe spi-bcm2708 cs_pin=" + cs_str;
#else
std::string command = "modprobe spidev cs_pin=" + cs_str;
#endif
system(command.c_str());
sleep(1);
fd = open(device.c_str(), O_RDWR);
if (fd < 0){
error_flag = true;
return -1;
}
}
error_flag = false;
return 1;
}
//******************** set Mode *********************************************
/**
* @~english
* @brief Set the SPI-mode
*
* @param mode Number of the SPI-Mode
* @return 1 by success, -1 by failure
*
* @~german
* @brief Setzt den SPI-Modus
*
* @param mode Nummer SPI-Modus
* @return 1 bei Erfolg, -1 im Fehlerfall
*/
int gnublin_spi::setMode(unsigned char mode){
if (ioctl(fd, SPI_IOC_WR_MODE, &mode) < 0){
error_flag = true;
return -1;
}
error_flag = false;
return 1;
}
//***************** getMode *************************************************
/**
* @~english
* @brief Returns the set SPI-Mode
*
* @return Number of the SPI-mode
*
* @~german
* @brief Gibt den eingestellten SPI-Modus zurück
*
* @return Nummer des SPI-Modus
*/
int gnublin_spi::getMode(){
__u8 mode;
if (ioctl(fd, SPI_IOC_RD_MODE, &mode) < 0){
error_flag = true;
return -1;
}
error_flag = false;
return mode;
}
//******************** setLSB ***********************************************
/**
* @~english
* @brief Set the LSB-mode
*
* @param lsb 0: MSB first, 1 LSB first
* @return 1 by success, -1 by failure
*
* @~german
* @brief Setzt den LSB-Modus.
*
* @param lsb 0: MSB zuerst; 1 LSB zuerst
* @return 1 bei Erfolg, -1 im Fehlerfall
*/
int gnublin_spi::setLSB(unsigned char lsb){
if (ioctl(fd, SPI_IOC_WR_LSB_FIRST, &lsb) < 0){
error_flag = true;
return -1;
}
error_flag = false;
return 1;
}
//************************ getLSB() *****************************************
/**
* @~english
* @brief Returns the set LSB-Mode
*
* @return 0: MSB first, 1 LSB first
*
* @~german
* @brief Gibt den eingestellten LSB-Modus zurück.
*
* @return 0: MSB zuerst; 1 LSB zuerst
*/
int gnublin_spi::getLSB(){
__u8 lsb;
if (ioctl(fd, SPI_IOC_RD_LSB_FIRST, &lsb) < 0) {
error_flag = true;
return -1;
}
error_flag = false;
return lsb;
}
//*********************** setLength() ***************************************
/**
* @~english
* @brief Set the lenght of the words which will be send
*
* @param bits Number of bits of each word
* @return 1 by success, -1 by failure
*
* @~german
* @brief Legt die Länge der gesendeten Wörter fest
*
* @param bits Anzahl der Bits je Word
* @return 1 bei Erfolg, -1 im Fehlerfall
*/
int gnublin_spi::setLength(unsigned char bits){
if (ioctl(fd, SPI_IOC_WR_BITS_PER_WORD, &bits) < 0){
error_flag = true;
return -1;
}
error_flag = false;
return 1;
}
//************************ getLength() **************************************
/**
* @~english
* @brief Returns the length of the words in bits
*
* @return Number of bits of each word
*
* @~german
* @brief Gibt die Anzahl von Bits je Wort zurück.
*
* @return anzahl der Bits je Wort
*/
int gnublin_spi::getLength(){
__u8 bits;
if (ioctl(fd, SPI_IOC_RD_BITS_PER_WORD, &bits) < 0){
error_flag = true;
return -1;
}
error_flag = false;
return bits;
}
//************************* setSpeed ****************************************
/**
* @~english
* @brief Set the speed of the SPI-Bus