You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# A Arduino Library for the Infineon TLE9012 Battery Management IC
1
+
# An Arduino Library for the Infineon TLE9012 Battery Management IC
2
2
3
3
This Library aims to be an easy to use solution to experiment with the TLE9012 BMS IC from Infineon. There are a couple examples included in the examples folder to get you started using the basic functions of the library. More complex examples are planed to be added in the future. Examples are written for a ESP32 Node MCU but can be adapted to other boards by passing an appropriate HardwareSerial instance to the tle9012.init() function. If RX and TX pins are fixed for the architecture just pass 0 for the rxpin and txpin arguments.
Copy file name to clipboardExpand all lines: TLE9012.h
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -391,6 +391,7 @@ typedef struct
391
391
392
392
//Low Level Routines for direct register Access
393
393
iso_uart_status_treadRegisterSingle(uint8_t nodeID, uint16_t regaddress, uint16_t* result); //Read data from a single register
394
+
iso_uart_status_treadRegisterSingle_ext(uint8_t* nodeID, uint16_t* regaddress, uint16_t* result); //Extended Read Function that reads back all parameters (data, return frame address and returned node ID)
394
395
iso_uart_status_twriteRegisterSingle(uint8_t nodeID, uint16_t regaddress, uint16_t databuffer); //Write data to a single register
395
396
396
397
iso_uart_status_treadRegisterBroadcast(uint16_t regaddress, uint16_t* result); //Write a broadcast to all devices in the daisy chain
0 commit comments