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
This software requires an interface hardware that can write information to the IC.The information is sent to the interface IC via the com port using a usb to serial converter.
9
14
@@ -20,5 +25,35 @@ Immediately after opening the port, the software sends the character `!` and if
20
25
response must send at below format:<br>
21
26
`!``DEVICE-NAME-(STRING)``\n`
22
27
28
+
#### Information to be programmed
29
+
According to the information in the HCS datasheet, 12 WORD 16-bit should be set.<br>
30
+
The sending packet contains 25 bytes that are sent as follows:<br>
Sending this package does not require a response. Instead, the programmer can display the result, error or any message that is described in the following section.
34
+
23
35
### Receive
36
+
The received packages consist of three main sections, which are shown below:<br>
37
+
`TYPE-(Char)``MESSAGE-(STRING)``\n` <br>
38
+
39
+
#### Packet TYPE
40
+
- Log `<`
41
+
- Info `i`
42
+
- Warning `w`
43
+
- Error `e`
44
+
45
+
#### Example
46
+
Print data to log:<br>
47
+
`<``HELLO``\n`<br>
48
+
49
+
Show Warning message:<br>
50
+
`w``Warning!``\n`<br>
51
+
52
+
### Hardware
53
+
Any hardware that supports UART serial communication can be used as an interface and hardware. For example, ARDUINO PIC AVR STM8 are a good choice.
54
+
55
+
56
+
If you have a open hardware project for this software, please let me know so I can share it.
0 commit comments