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
+2-2
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ This slightly simplified [view](https://github.com/jgraph/drawio) is explained [
51
51
## Data Transfer
52
52
53
53
- Inplemented:
54
-
-[UART](https://en.wikipedia.org/wiki/Universal_asynchronous_receiver-transmitter)conectable to virtual UART over USB
54
+
-[UART](https://en.wikipedia.org/wiki/Universal_asynchronous_receiver-transmitter)connectable to virtual UART over USB
55
55
-[RTT](https://www.segger.com/products/debug-probes/j-link/technology/about-real-time-transfer/) over [J-Link](./third_party/segger.com/ReadMe.md) and [RTT over ST-Link](./third_party/goST/ReadMe.md)
56
56
- A small separate micro-controller is always usable as interfaces bridge to [GPIO](https://circuitcellar.com/cc-blog/a-trace-tool-for-embedded-systems/), [IΒ²C](https://en.wikipedia.org/wiki/I%C2%B2C), [SPI](https://en.wikipedia.org/wiki/Serial_Peripheral_Interface), [CAN](https://en.wikipedia.org/wiki/CAN_bus), [LIN](https://en.wikipedia.org/wiki/Local_Interconnect_Network), ...
57
57
@@ -132,7 +132,7 @@ First are the PC reception timestamps and after the port info are the used *tric
132
132
133
133
The same is possible for **interrupt timing analysis**.
134
134
135
-
- Mixed case *trice* macros are [short](./docs/TriceEncodings.md#flex-short-sub-encoding) trices and the letter i at the end says **i**nside critical section. (FLEX encoding)
135
+
- Mixed case TRICE macros are [short](./docs/TriceEncodings.md#flex-short-sub-encoding) *Trices* and the letter i at the end says **i**nside critical section. (FLEX encoding)
136
136
- `Trice16( "tim: myFunc %d\n", sysTick );` before and after a function call lets you easy measure the function execution time.
137
137
- As graphical visualization you could use a tool similar to [https://github.com/sqshq/sampler](https://github.com/sqshq/sampler).
Copy file name to clipboardExpand all lines: internal/args/init.go
+1-1
Original file line number
Diff line number
Diff line change
@@ -101,7 +101,7 @@ If you need target timestamps you need to get the time inside the target and sen
101
101
fsScLog.StringVar(&decoder.ShowTargetLocation, "tLocFmt", "%16s:%4d ", `Target location format string at start of each line, if target location existent (configured). Use "" to suppress existing target location. If several trices form a log line only the location of first trice ist displayed.`)
102
102
fsScLog.StringVar(&decoder.ShowTargetTimestamp, "ttsf", "time:%9d ", `Target timestamp format string at start of each line, if target timestamps existent (configured). Use "" to suppress existing target timestamps. If several trices form a log line only the timestamp of first trice ist displayed.`)
fsScLog.StringVar(&decoder.TargetEndianess, "targetEndianess", "littleEndian", `Target endianness trice data stream. Option: "bigEndian".`)
104
+
fsScLog.StringVar(&decoder.TargetEndianness, "targetEndianess", "littleEndian", `Target endianness trice data stream. Option: "bigEndian".`)
105
105
fsScLog.StringVar(&emitter.ColorPalette, "color", "default", colorInfo) // flag
106
106
fsScLog.StringVar(&emitter.Prefix, "prefix", DefaultPrefix, "Line prefix, options: any string or 'off|none' or 'source:' followed by 0-12 spaces, 'source:' will be replaced by source value e.g., 'COM17:'.") // flag
107
107
fsScLog.StringVar(&emitter.Suffix, "suffix", "", "Append suffix to all lines, options: any string.") // flag
0 commit comments