aboutsummaryrefslogtreecommitdiff
path: root/src/server/httpd/menu.xml
blob: be1446416b163421b73e8d1667fba26fd0f12709 (plain)
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
<?xml version = "1.0" encoding="iso-8859-1" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="plaintext.xsl"?>
<website>

	<language lang="Norsk">

		<page lang="eng">
			<outfile>index.tcl</outfile>
			<menutext>Config Target</menutext>
			<menulink>index.tcl</menulink>
			<pageheading>OpenOCD debugger</pageheading>
			<level2parent>index.tcl</level2parent>
			<level2menu href="index.tcl" title="Target Status" titlestyle="color:#4e6627;">
			</level2menu>
			<!--
			<level2menu href="terminal.tcl" title="UART forwarding" titlestyle="color:#4e6627;">
			</level2menu>
			 -->

			<pagetext>
			<markup_code><![CDATA[


			<table>
				<tr><td style="height:10px;width:535px;">&nbsp</td></tr>
				<tr><td style="height:1px;width:535px;background-color:#a2c5d1;"></td></tr>
				<tr><td style="height:5px;width:535px;">&nbsp</td></tr>
			</table>

			<H1>Target Status</H1>

			<table>
				<tr>
					<td class="fontbigger">
						<tcl>
							set form_address [formfetch form_address]
							set form_action [formfetch form_action]

							if {[string compare $form_action "Halt"]==0} {
								append console [encode [capture_catch "halt"]]
							}
							if {[string compare $form_action "Resume"]==0} {
								append console [encode [capture_catch "resume"]]
							}

							if {[string compare $form_action "Reset and run"]==0} {
								append console [encode [capture_catch "reset run"]]
							}

							if {[string compare $form_action "Power on"]==0} {
								append console [encode [capture_catch "power on"]]
							}
							if {[string compare $form_action "Power off"]==0} {
								append console [encode [capture_catch "power off"]]
							}
						</tcl>

						<tcl>append console [encode [capture_catch poll]]</tcl>
					</td>
				</tr>
			</table>

			<form action="index.tcl" method="post">
				<table><tr>
					<td><input type="submit" name="form_action" value="Reset and run"></td>
					<td class="buttonspacesmall"></td><td><input type="submit" name="form_action" value="Halt"></td>
					<td class="buttonspacesmall"></td><td><input type="submit" name="form_action" value="Resume"></td>
					<td style="width:50px;"></td><td><input type="submit" name="form_action" value="Power on"></td>
					<td class="buttonspacesmall"></td><td><input type="submit" name="form_action" value="Power off"></td>
				</tr></table>

				<br>
				<br>

				<p>
			</form>
			]]></markup_code>
			<right_column>
				<markup_code><![CDATA[
					<p>Target status shows that status of the connected target. </p>
					<p><b>Current target</b> - selected target configuration. <br>
					<p><b>Startup</b> - whether or not the target script ran to completion. Note
					that even if the target is disconnected, powered down or unresponsive, the
					startup script will still run to completion. Startup - OK does not mean
					that the target is fully operational, simply that the configuration script
					did not contain syntax errors for instance.
					See log for details. <br>
					<p><b>Target power</b> - Detects power on target. <br>
					If the JTAG cable is not connected, or the target has no power, then no target power will be detected.</p>
					<p>Type "help power" in telnet for command to control power relay.</p>
				]]></markup_code>
			</right_column>

			</pagetext>
		</page>




		<page lang="eng">
			<outfile>targets.tcl</outfile>
			<level2parent>documentation.tcl</level2parent>
			<pageheading>Target config quick start guide</pageheading>
			<pagetext>
				<markup_code><![CDATA[

				A target needs an openocd.cfg file. This config file sets up
				the CPU, flash and reset init script. Either OpenOCD ships with an
				openocd.cfg file for your target or you need to take an existing
				config file and modify it for your needs.
				<p>
				The reset init script is crucial. It will set up e.g. MMU, chip
				select registers, etc. after a reset. The init.cfg (reset init script)
				is embedded into the openocd.cfg file in the sampls OpenOCD provides.
				<p>
				Writing an openocd.cfg from scratch is a non-trivial exercise, but
				fortunally it only has to be done once for a target and afterwards it
				rarely if ever needs to be changed.


				]]></markup_code>
				<right_column>

					Quick start guide on how to configure a target.
				</right_column>
			</pagetext>


		</page>




		<page lang="eng">
			<outfile>flashinfo.tcl</outfile>
			<menutext>Flash</menutext>
			<menulink>flashinfo.tcl</menulink>
			<pageheading>Flash Information</pageheading>
			<level2parent>flashinfo.tcl</level2parent>
			<level2menu href="flashinfo.tcl" title="Info" titlestyle="color:#4e6627;">
			</level2menu>
			<level2menu href="erase.tcl" title="Erase" titlestyle="color:#4e6627;">
			</level2menu>
			<level2menu href="flash.tcl" title="Program / Verify" titlestyle="color:#4e6627;">
			</level2menu>
			<level2menu href="production.tcl" title="Production" titlestyle="color:#4e6627;">
			</level2menu>

			<pagetext>
			<markup_code><![CDATA[

			<div style="font-size:14px;">Configured flash banks:</div>
			<p>
			<code style="white-space: nowrap;">
				<tcl>
					set flash_return [ocd_flash_banks]
					if {[llength $flash_return]!=0} {
						append buffer [encode [flash banks]]

						set form_action [formfetch form_action]
						if {[string compare $form_action "Reset CPU and probe flash"]==0} {
							append console [encode [capture_catch "reset init"]]
							append buffer [encode [capture_catch "flash probe 0"]]
							append buffer [encode [capture_catch "flash info 0"]]
						}
					} else {
						append buffer "No flash bank configured."
					}
				</tcl>
				<p>
				<form action="flashinfo.tcl" method="post">
					<input type="submit" name="form_action" value="Reset CPU and probe flash">
				</form>
				<tcl>
					foreach a [ocd_flash_banks] {
						append buffer "Flash bank at [format "0x%08x size 0x%08x" $a(base) $a(size)]: "
						</tcl>
							<form action="downloadmem.tcl" method="post">
								<input type="hidden" name="form_address" value="<tcl>append buffer [format "0x%08x" $a(base)]</tcl>">
								<input type="hidden" name="form_length" value="<tcl>append buffer [format "0x%08x" $a(size)]</tcl>">

								<input type="submit" value="Download" name="form_action">
								<br>
							</form>
						<tcl>
					}
				</tcl>
			</code>


			]]></markup_code>
			<right_column>
				<![CDATA[
				<p>Here you will find information about the flash chips that you have
				in your configuration.<p/>
				<p><b>Reset CPU and probe flash</b> - This will reset the CPU and show
				you more detailed information about your flash. This includes information about
				the different sectors in the flash, and the flash driver used.</p>
				]]>
			</right_column>

			</pagetext>
		</page>

		<page lang="eng">
			<outfile>flash.tcl</outfile>
			<level2parent>flashinfo.tcl</level2parent>
			<pageheading>Program / Verify Flash</pageheading>
			<pagetext>
			<markup_code><![CDATA[

			<tcl>

			set form_offset [formfetch form_offset]
			set form_action [formfetch form_action]
			set form_type [formfetch form_type]


			set post ""
			catch {set post $post_data} err

			if {[string compare $form_offset ""]==0} {
				set form_offset 0
			}
			if {[string compare $form_type ""]==0} {
				set form_type ""
			}

			</tcl><code style="white-space: nowrap;"><tcl>

			set data ""
			append buffer {<form enctype="multipart/form-data" action="flash.tcl" method="post">}

			set action_reset [expr {[string length $form_action]!=0}]
			set action_flash [expr {[string compare $form_action "Flash"]==0 || [string compare $form_action "Flash and verify"]==0}]
			set action_verify [expr {[string compare $form_action "Verify"]==0 || [string compare $form_action "Flash and verify"]==0}]

			if {$action_reset} {
				append console [encode [capture_catch "reset init"]]
			}
			</tcl>
			</code><tcl>

			append buffer {<table>}
			append buffer {<tr><td class="formtext">File</td><td><input type="file" name="form_filecontent"></td></tr>}
			append buffer "<tr><td class=\"formtext\" >Offset</td><td><input type=\"text\" name=\"form_offset\" value=\"$form_offset\"></td></tr>"

			</tcl>
			<tr><td class="formtext" style="padding-top:1px;">Type</td><td>
			<select name="form_type">
				<option
					<tcl>if {[string compare $form_type ""]==0} { append buffer {selected="selected"} } </tcl>
					value ="">auto</option>
				<option
					<tcl>if {[string compare $form_type "elf"]==0} { append buffer {selected="selected"} } </tcl>
					value ="elf">elf</option>
				<option
					<tcl>if {[string compare $form_type "bin"]==0} { append buffer {selected="selected"} } </tcl>
					value ="bin">binary</option>
				<option
					<tcl>if {[string compare $form_type "ihex"]==0} { append buffer {selected="selected"} } </tcl>
					value ="ihex">ihex</option>
				<!-- broken <option value ="s19">s19</option> -->
			</select>
			</td>

			</tr>


			</table>

				<table>
					<tr><td style="height:15px;width:535px;">&nbsp</td></tr>
					<tr><td style="height:1px;width:535px;background-color:#a2c5d1;"></td></tr>
					<tr><td style="height:15px;width:535px;">&nbsp</td></tr>
				</table>

			<table><tr>
				<td><input type="submit" name="form_action" value="Flash" ></td>
				<td class="buttonspacesmall"></td><td><input type="submit" name="form_action" value="Flash and verify" ></td>
				<td class="buttonspacesmall"></td><td><input type="submit" name="form_action" value="Verify" ></td>
			</tr></table>

			<p>
			<tcl>

			if {$action_flash||$action_verify} {
				catch {writeform form_filecontent $upload_filename} result
				append console [encode $result]
			}
			append buffer "<br>"
			if {$action_flash} {
				append console [encode [capture_catch "halt"]]
				append buffer "<b>"
				if {[catch {capture_catch {eval "flash write_image erase $upload_filename $form_offset $form_type"}} result]} {
					append buffer "Flash write failed<br>"
					append console [encode $result]
				} else {
					append buffer [encode $result]
					append buffer "Flash write succeed<br>"
				}
				append buffer "</b>"
			}
			if {$action_verify} {
				append console [encode [capture_catch "halt"]]
				append buffer "<b>"
				if {[catch {capture_catch {eval "verify_image $upload_filename $form_offset $form_type"}} result]} {
					append buffer "Verify failed<br>"
					append console [encode $result]
				} else {
					append buffer [encode $result]
					append buffer "Verify succeed<br>"
				}
				append buffer "</b>"
			}
			</tcl>

			</form>

			]]></markup_code>

			<right_column>
				<![CDATA[
				<p>Program and/or verify the flash on your target.</p>
				<p><b>Flash</b> - Halt CPU, automatically erase flash if required and program flash with image.</p>
				<p><b>Flash and verify</b> - Programs the flash and verifies the programmed flash content is correct.</p>
				<p><b>Verify</b> - Halt CPU and verify image in flash or RAM.</p>
				<p><b>Offset</b> - This value is added to the address of the image.<br>
					Binary images start at address 0 by default, whereas elf and ihex have addresses encoded into the image.<br>
					Typically 0 for elf/ihex and the address to	write the image to for binary files.</p>
					]]>
			</right_column>


			</pagetext>

		</page>




		<page lang="eng">
			<outfile>production.tcl</outfile>
			<level2parent>flashinfo.tcl</level2parent>
			<pageheading>Production</pageheading>
			<pagetext>
			<markup_code><![CDATA[
			<tcl>
				set form_action [formfetch form_action]
				set form_serialnumber [formfetch form_serialnumber]
				append buffer [production_info]
			</tcl>

			<form enctype="multipart/form-data" action="production.tcl" method="post">
				<code style="white-space: nowrap;">
					<tcl>
						if {[string compare $form_action "Upload firmware"]==0} {
							set wrotedata [catch {writeform form_filecontent $upload_filename} result]
							append buffer [encode $result]
							if {$wrotedata==0} {
								append buffer "<br>Running production procedure<p>"
								append buffer "<br>Reset and init: <br>"

								append console [encode [capture_catch {catch "production $upload_filename $form_serialnumber"}]]
							}
						}
						if {[string compare $form_action "Test"]==0} {
							append buffer "<br>Running production test. Output from first 10 seconds printed below. <p>"

							append console [encode [capture_catch {catch production_test}]]
						}
						if {[string compare $form_action "Power on"]==0} {
							append console [encode [capture_catch "power on"]]
						}
						if {[string compare $form_action "Power off"]==0} {
							append console [encode [capture_catch "power off"]]
						}
					</tcl>
				</code>
				<tcl>
					append buffer {<p class="formtext">Firmware file(raw binary) <input type="file" name="form_filecontent"><p>}
					append buffer {<p class="formtext">Serial number <input type="text" name="form_serialnumber"><p>}
				</tcl>

				<table>
					<tr><td style="height:15px;width:535px;">&nbsp</td></tr>
					<tr><td style="height:1px;width:535px;background-color:#a2c5d1;"></td></tr>
					<tr><td style="height:15px;width:535px;">&nbsp</td></tr>
				</table>

				<table><tr>
					<td><input type="submit" name="form_action" value="Upload firmware" ></td>
					<td class="buttonspacesmall">&nbsp</td><td><input type="submit" name="form_action" value="Test"></td>
					<td class="buttonspacesmall">&nbsp</td><td><input type="submit" name="form_action" value="Power on"></td>
					<td class="buttonspacesmall">&nbsp</td><td><input type="submit" name="form_action" value="Power off">
				</tr></table>
			</form>

			]]></markup_code>

			<right_column>
				<![CDATA[
				The target script can implement the "production", "production_info" and "production_test" tcl proc's. These procedures
				are used on this page. There are default implementations that do nothing.

				<p><b>Upload firmware</b> - Power cycle target, reset target and program raw binary file to flash bank 0, offset 0 and verify flash programming. Leave target powered on.</p>
				<p><b>Test</b> - Power up target, run 10 second target test. Output is provided via the DCC output channel. </p>
				<p><b>Power on</b> - Power on target.</p>
				<p><b>Power off</b> - Power off target.</p>
				<p><b>Serial number</b> - A target script can use this string in the production procedure. Type "help production" for more info.</p>
					]]>
			</right_column>


			</pagetext>

		</page>



		<page lang="eng">
			<outfile>erase.tcl</outfile>
			<menulink>erase.tcl</menulink>
			<pageheading>Erase Flash</pageheading>
			<level2parent>flashinfo.tcl</level2parent>
			<pagetext>
			<markup_code><![CDATA[



			<tcl>

			set form_address [formfetch form_address]
			set form_length [formfetch form_length]
			set form_action [formfetch form_action]

			if {[string compare $form_length ""]==0} {
				set form_length 0x10000
			}
			if {[string compare $form_address ""]==0} {
				if {[catch {[first_flash_base]} result]==0} {
						set form_address "0x[tohex $result]"
					}
			}


			if {[string compare $form_address ""]!=0} {
				if {[string compare $form_action "Erase"]==0} {
						append buffer "<code style=\"white-space: nowrap;\">"
						append console [encode [capture_catch {
						reset init
						flash erase_address $form_address $form_length}]]
						append buffer </code>
				}
			}


			</tcl>

			<form action="erase.tcl" method="post">
				<table>
				<tr><td class="formtext" style="padding-right:10px;">Address</td><td><input type="text" name="form_address" value="<tcl>append buffer $form_address</tcl>"></td></tr>
				<tr><td class="formtext">Length</td><td><input type="text" name="form_length" value="<tcl>append buffer $form_length</tcl>"></td></tr>
				</td></tr>
				</table>
				<table>
					<tr><td style="height:15px;width:535px;">&nbsp</td></tr>
					<tr><td style="height:1px;width:535px;background-color:#a2c5d1;"></td></tr>
					<tr><td style="height:15px;width:535px;">&nbsp</td></tr>
				</table>

				<input type="submit" name="form_action" value="Erase"><br>


			</form>



			]]></markup_code>
			<right_column>
				<![CDATA[
				<p>Note that flash programming will erase flash if required.<p/>
				<p>Reset and init CPU, then erase address range.</p>
				<p>The length field is specified in number of bytes.</p>
					]]>
			</right_column>

			</pagetext>
		</page>


		<page lang="eng">
			<outfile>run.tcl</outfile>
			<menulink>run.tcl</menulink>
			<pageheading>Run program</pageheading>
			<level2parent>flashinfo.tcl</level2parent>
			<pagetext>
			<markup_code><![CDATA[



<tcl>

set form_address [formfetch form_address]
set form_action [formfetch form_action]

if {[string compare $form_action "Run from address"]==0} {
	append console [encode [capture_catch "halt"]]
	append console [encode [capture_catch "wait_halt"]]
	append console [encode [capture_catch "resume $form_address"]]
}

if {[string compare $form_action "Halt"]==0} {
	append console [encode [capture_catch "halt"]]
	append console [encode [capture_catch "wait_halt"]]
}

if {[string compare $form_action "Reset and run"]==0} {
	append console [encode [capture_catch "reset run"]]
}

if {[string compare $form_action "Reset and init"]==0} {
	append console [encode [capture_catch "reset init"]]
}

append console [encode [capture_catch poll]]

</tcl>

<form action="run.tcl" method="post">
	<table>
	<tr><td class="formtext" style="padding-right:10px;">Address</td><td><input type="text" name="form_address" value="<tcl>append buffer $form_address</tcl>"></td></tr>
	</td></tr>
	</table>
	<table>
		<tr><td style="height:15px;width:535px;">&nbsp</td></tr>
		<tr><td style="height:1px;width:535px;background-color:#a2c5d1;"></td></tr>
		<tr><td style="height:15px;width:535px;">&nbsp</td></tr>
	</table>

	<input type="submit" name="form_action" value="Reset and run"> <input type="submit" name="form_action" value="Run from address"> <input type="submit" name="form_action" value="Halt"><input type="submit" name="form_action" value="Reset and init"><br>
</form>



			]]></markup_code>
			<right_column>
				<![CDATA[
				<p>Reset and run - reset CPU and let it run.</p>
				<p>Halt - halt CPU.</p>
				<p>Run from address - halt CPU and resume from address. Default is resume from current address.</p>
				<p>Reset and init - reset CPU and run init script.</p>
				]]>
			</right_column>

			</pagetext>
		</page>


		<page lang="eng">
			<outfile>browsemem.tcl</outfile>
			<menutext>Memory</menutext>
			<menulink>browsemem.tcl</menulink>
			<pageheading>Browse / Edit Memory</pageheading>
			<level2parent>browsemem.tcl</level2parent>
			<level2menu href="browsemem.tcl" title="Browse / Edit" titlestyle="color:#4e6627;">
			<![CDATA[
				Browse and edit memory.
			]]>
			</level2menu>
			<level2menu href="downloadmem.tcl" title="Download" titlestyle="color:#4e6627;">
			<![CDATA[
				Copy memory range to developer machine
			]]>
			</level2menu>

			<pagetext>
			<markup_code><![CDATA[



			<tcl>

			set form_address [formfetch form_address]
			set form_length [formfetch form_length]
			set form_type [formfetch form_type]
			set form_action [formfetch form_action]
			set form_value [formfetch form_value]

			if {[string compare $form_length ""]==0} {
				set form_length 0
			}
			if {$form_length<=0} {
				set form_length 0x80
			}
			if {$form_length>0x1000} {
				set form_length 0x1000
			}

			if {[string compare $form_type ""]==0} {
				set form_type mdw
			}

			if {[string compare $form_type "mdw"]==0} {
				set wordsize 4
				set modify_cmd mww
			}
			if {[string compare $form_type "mdh"]==0} {
				set wordsize 2
				set modify_cmd mwh
			}
			if {[string compare $form_type "mdb"]==0} {
				set wordsize 1
				set modify_cmd mwb
			}




			if {[string compare $form_address ""]!=0} {
				if {[string compare $form_action "Previous"]==0} {
					# Kludge! Work around problems parsing hex in Jim Tcl expressions
					incr form_address ; set form_address [expr $form_address-1]
					if {$form_address-$form_length>0} {
						set form_address "0x[tohex [expr $form_address-$form_length]]"
					} else {
						set form_address "0x0"
					}
				}
				if {[string compare $form_action "Next"]==0} {
					# Kludge! Work around problems parsing hex in Jim Tcl expressions
					incr form_address ; set form_address [expr $form_address-1]
					set form_address "0x[tohex [expr $form_address+$form_length]]"
				}
				if {[string compare $form_action "Modify"]==0} {
					append console [capture_catch "$modify_cmd $form_address $form_value"]
				}
				if {[string compare $form_action "Fill"]==0} {
					append console [capture_catch "$modify_cmd $form_address $form_value $form_length"]
				}
			}


			</tcl>

			<form action="browsemem.tcl" method="post">
				<table>
				<tr><td class="formtext">Address</td><td><input type="text" name="form_address" value="<tcl>append buffer $form_address</tcl>"></td></tr>
				<tr><td class="formtext">Length</td><td><input type="text" name="form_length" value="<tcl>append buffer "0x[tohex $form_length]"</tcl>"></td></tr>
				<tr><td class="formtext">Value</td><td><input type="text" name="form_value" value="<tcl>append buffer $form_value</tcl>"></td>
					<td class="buttonspacesmall">&nbsp</td><td><input type="submit" name="form_action" value="Modify"></td>
					<td class="buttonspacesmall">&nbsp</td><td><input type="submit" name="form_action" value="Fill"></td></tr>
				<tr><td class="formtext">Type</td><td style="padding-top:1px;">
				<select name="form_type">
					<option
						<tcl>if {[string compare $form_type "mdb"]==0} { append buffer {selected="selected"} } </tcl> value ="mdb">8 bit
					</option>
					<option
						<tcl>if {[string compare $form_type "mdh"]==0} { append buffer {selected="selected"} } </tcl> value ="mdh">16 bit
					</option>
					<option
						<tcl>if {[string compare $form_type "mdw"]==0} { append buffer {selected="selected"} } </tcl>value ="mdw">32 bit
					</option>
				</select>

				</td></tr>
				</table>
				<table>
					<tr><td style="height:15px;width:535px;">&nbsp</td></tr>
					<tr><td style="height:1px;width:535px;background-color:#a2c5d1;"></td></tr>
					<tr><td style="height:15px;width:535px;">&nbsp</td></tr>
				</table>

				<table><tr>
					<td><input type="submit" name="form_action" value="Refresh"></td>
					<td class="buttonspacesmall">&nbsp</td><td><input type="submit" name="form_action" value="Previous" ></td>
					<td class="buttonspacesmall">&nbsp</td><td><input type="submit" name="form_action" value="Next" ></td>
				</tr></table>
				<br>

			</form>
			<p>
			<div class="fontbigger">Memory:</div><p>
			<code style="white-space: nowrap; font-size:11px;font:courier new;">
				<tcl>
				if {[string compare $form_address ""]!=0} {
					append console [encode [capture_catch halt]]
					append buffer [encode [capture_catch "$form_type $form_address [expr $form_length]"]]
				}
				</tcl>
			</code>





			]]></markup_code>
			<right_column>
				<![CDATA[
				<p>Browse and edit target memory.<br>
					Length is in bytes, maximum 4096 bytes.</p>
				<p>An error message is shown when trying to browse or edit memory which cases a CPU fault.</p>
				<p>CPU will be halted if required.</p>
				<p><b>Modify</b> - Will modify only one byte, half-word or word starting at Address.</p>
				<p><b>Fill</b> - Will fill the specified region with the specified value.</p>
				<p><b>Refresh</b> - Display the content of the specified memory area.</p>
					]]>
			</right_column>

			</pagetext>
		</page>




		<page lang="eng">
			<outfile>downloadmem.tcl</outfile>
			<level2parent>browsemem.tcl</level2parent>
			<pageheading>Download Memory Range</pageheading>
			<pagetext>
			<markup_code><![CDATA[
			<tcl>
				set form_address [formfetch form_address]
				set form_length [formfetch form_length]
				set form_action [formfetch form_action]
			</tcl>
			<form action="downloadmem.tcl" method="post">
				<table>
				<tr><td class="formtext">Address</td><td><input type="text" name="form_address" value="<tcl>append buffer $form_address</tcl>"></td></tr>
				<tr><td class="formtext">Length</td><td><input type="text" name="form_length" value="<tcl>append buffer $form_length</tcl>"></td></tr>
				</td></tr>
				</table>

				<table>
					<tr><td style="height:15px;width:535px;">&nbsp</td></tr>
					<tr><td style="height:1px;width:535px;background-color:#a2c5d1;"></td></tr>
					<tr><td style="height:15px;width:535px;">&nbsp</td></tr>
				</table>

				<input type="submit" value="Download" name="form_action">


			</form>
			<tcl>
				if {[string compare $form_action "Download"]==0} {
					append console [encode [capture_catch "reset init"]]
					append console [encode [capture_catch "dump_image /tmp/dump.bin $form_address $form_length"]]
					</tcl>
					<form action="../dump.bin" target="_blank">
						<input type="submit" name="form_action" value="Save downloaded memory">
					</form>
					<tcl>
				}

			</tcl>



			]]></markup_code>
			<right_column>
				<![CDATA[
				Download memory from target. <br>
				<b>Note</b> that download memory can take
				a long time(potentially minutes for megabytes at low JTAG clk speeds).
				<p/>
				Once the memory is downloaded a link is available on the page to download
				the file to your PC.
				]]>
			</right_column>
			</pagetext>

		</page>



		<page lang="eng">
			<outfile>openocd.tcl</outfile>
			<menutext>OpenOCD</menutext>
			<menulink>openocd.tcl</menulink>
			<pageheading>Run Command</pageheading>
			<level2parent>openocd.tcl</level2parent>
			<level2menu href="openocd.tcl" title="Run Command" titlestyle="color:#4e6627;">
			</level2menu>
			<level2menu href="guiupload.tcl" title="Upload File" titlestyle="color:#4e6627;">
			<![CDATA[
				Upload file
			]]>
			</level2menu>

			<pagetext>
			<markup_code><![CDATA[

			<tcl>
				set form_command [formfetch form_command]

				set form_edittext ""
				if {[string length $form_command]>0} {
					set form_edittext [capture_catch {eval $form_command}]
				}

				append buffer {<form action="openocd.tcl" method="post">} "\n"
				append buffer {Command<br>}
				append buffer {<textarea style="overflow:auto;" rows="5" cols="65" name="form_command" wrap="off">}
				append buffer [to_textarea $form_command]
				append buffer {</textarea><br>}
				append buffer {<input type="submit" value="Run" name="form_action" ><br>}
				append buffer {<textarea style="overflow:auto;" rows="21" cols="65" name="form_edittext" readonly=1 wrap="off">}
				append buffer [to_textarea $form_edittext]
				append buffer {</textarea><br>}

				append buffer {</form>} "\n"

			</tcl>

			]]></markup_code>

			<right_column>
				<![CDATA[
				<p>Run tcl statement(s). Add "ocd_" prefix to OpenOCD commands otherwise
				there will be no output, e.g. "reset init" use "ocd_reset init".
				<p/>
				<p><a href="/ram/log">Click here to download log</a>.</p>
				<p>To download log you can also use commands like "wget http://<tcl>append buffer [ip]</tcl>/ram/log", or
				point your web browser to said address.</p>
				<p>
				You can also execute tcl commands using curl from your developer PC:
				</p>
				<code>
				curl --form form_command=ocd_version <tcl>append buffer [ip]</tcl>runtcl.tcl
				</code>

				]]>
			</right_column>
			</pagetext>
		</page>



		<page lang="eng">
			<outfile>guiupload.tcl</outfile>
			<level2parent>openocd.tcl</level2parent>
			<pageheading>Upload File</pageheading>
			<pagetext>
			<markup_code><![CDATA[

			<tcl>
				set form_filename [formfetch form_filename];
				set form_action [formfetch form_action];
				#set form_filecontent [formfetch form_filecontent];

				append buffer {<form enctype="multipart/form-data" action="guiupload.tcl" method="post">}
				append buffer <br>
				if {[string compare $form_action "Upload"]==0} {
					if {[catch {writeform form_filecontent $form_filename} result]==0} {
						append buffer [encode $result]
					} else {
						append buffer Wrote $form_filename
					}
				}

				append buffer {<table style="padding:0px;border-collapse:collapse;"><tr><td class="formtext">Filename on OpenOCD machine</td><td><input type="text" name="form_filename"></td></tr>}
				append buffer {<td class="formtext">File to upload</td><td><input type="file" name="form_filecontent"></td></tr></table>}
				append buffer {<table><tr><td style="height:15px;width:535px;">&nbsp</td></tr><tr><td style="height:1px;width:535px;background-color:#a2c5d1;"></td></tr><tr><td style="height:15px;width:535px;">&nbsp</td></tr></table>}
				append buffer {<input type="submit" name="form_action" value="Upload" ><br> }
				append buffer {</form>}

			</tcl>

			]]></markup_code>
			</pagetext>

		</page>



		<page lang="eng">
			<outfile>targets.tcl</outfile>
			<level2parent>documentation.tcl</level2parent>
			<pageheading>Target config quick start guide</pageheading>
			<pagetext>
				<markup_code><![CDATA[

				A target needs an openocd.cfg file. This config file sets up
				the CPU, flash and reset init script. Either OpenOCD ships with an
				openocd.cfg file for your target or you need to take an existing
				config file and modify it for your needs.
				<p>
				The reset init script is crucial. It will set up e.g. MMU, chip
				select registers, etc. after a reset. The init.cfg (reset init script)
				is embedded into the openocd.cfg file in the sampls OpenOCD provides.
				<p>
				Writing an openocd.cfg from scratch is a non-trivial exercise, but
				fortunally it only has to be done once for a target and afterwards it
				rarely if ever needs to be changed.


				]]></markup_code>
				<right_column>

					Quick start guide on how to configure a target.
				</right_column>
			</pagetext>


		</page>





		<page lang="eng">
			<menulink>index.tcl</menulink>
			<level2parent>index.tcl</level2parent>
			<outfile>terminal.tcl</outfile>
			<pageheading>UART forwarding</pageheading>
			<pagetext>
			<markup_code><![CDATA[
			<tcl>
				set form_baudrate [formfetch form_baudrate]
				if {[string length $form_baudrate]==0} {
					set form_baudrate [ocd_uart]
					set form_baudrate [string range $form_baudrate 0 [expr [string length $form_baudrate]-2]]
				}
				set form_action [formfetch form_action]
			</tcl>
			<form action="terminal.tcl" method="post">
				Target baudrate:
					<select name="form_baudrate">
						<tcl>
							foreach i {9600 19200 38400 57600 115200} {
							</tcl>
								<option <tcl>if {[string compare $form_baudrate $i]==0} { append buffer {selected="selected"} } </tcl>
								value ="<tcl>append buffer $i</tcl>"><tcl>append buffer $i</tcl></option>
							<tcl>
							}
							</tcl>
						</select>

					<p>
					<input type="submit" name="form_action" value="Set baudrate" >
				</form>
			<tcl>
				if {[string compare $form_action "Set baudrate"]==0} {
					append console [encode [ocd_uart $form_baudrate]]
				}
			</tcl>

			<h2>Simple UART</h2>
			This terminal window is purely for illustrative purposes. Use telnet or a terminal program
			to talk to the target over TCP/IP for anything but trivial case of reading/writing a few
			lines of texts in simple tests.
			<p>
			]]></markup_code>
			<right_column>
				<![CDATA[
				Serial port data to target is forwarded(both directions) in the simple terminal window
				to the left. Alternatively you can <b>telnet <tcl>append buffer [ip]</tcl> 5555</b>
				or connect via TCP/IP from e.g. HyperTerminal.
				<p>
				Type "help uart" in telnet for information on how to set uart speed for target. Normally
				the uart speed is set from the target configuration script by adding an "uart N", where
				N is the baudrate.
				]]>
			</right_column>
			</pagetext>

		</page>



	</language>

</website>