Paste the data into a text box and process it with JavaScript

Use this page to process captures from the PIC chip. Copy and paste the output into the the text box below and press process.
This may take some time.
Using a Terminal program at 1200 baud, capture the output of the rpot002.asm . Copy and paste the output into the text box. The PIC outputs data as below, which is both a JavaScript function and Comma Separated Values (CSV). If you cut and paste, from Microsoft Works, it does not paste CRLF so I split the text into lines on ; or CRLF.

Lines are then split into values on comma using :

  var pA=p.split(",")
Use parseInt(pA[ 1 ],16) to convert hex parameters to decimal values. Convert Hex values using parseInt( pA
...
f(",6E,7F,95,5D,:,0092,000146,:,0067,000103,,");
f(",BF,2A,94,5D,:,0030,000048,:,0067,000103,,");
f(",CD,21,95,5D,:,0026,000038,:,0067,000103,,");
f(",C7,2D,94,5D,:,0030,000048,:,0067,000103,,");
f(",3E,B3,95,5D,:,00C7,000199,:,0067,000103,,");
f(",3A,B3,95,5D,:,00CD,000205,:,0067,000103,,");
f(",24,CA,94,5D,:,00E5,000229,:,0067,000103,,");
...