OpenCores
URL https://opencores.org/ocsvn/openmsp430/openmsp430/trunk

Subversion Repositories openmsp430

[/] [openmsp430/] [trunk/] [tools/] [openmsp430-gdbproxy/] [server.tcl] - Blame information for rev 172

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 olivier.gi
#!/usr/bin/wish
2
#------------------------------------------------------------------------------
3
# Copyright (C) 2001 Authors
4
#
5
# This source file may be used and distributed without restriction provided
6
# that this copyright statement is not removed from the file and that any
7
# derivative work contains the original copyright notice and the associated
8
# disclaimer.
9
#
10
# This source file is free software; you can redistribute it and/or modify
11
# it under the terms of the GNU Lesser General Public License as published
12
# by the Free Software Foundation; either version 2.1 of the License, or
13
# (at your option) any later version.
14
#
15
# This source is distributed in the hope that it will be useful, but WITHOUT
16
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
18
# License for more details.
19
#
20
# You should have received a copy of the GNU Lesser General Public License
21
# along with this source; if not, write to the Free Software Foundation,
22
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
23
#
24
#------------------------------------------------------------------------------
25
# 
26
# File Name: server.tcl
27
# 
28 15 olivier.gi
# Author(s):
29
#             - Olivier Girard,    olgirard@gmail.com
30
#
31 2 olivier.gi
#------------------------------------------------------------------------------
32 15 olivier.gi
# $Rev: 172 $
33
# $LastChangedBy: olivier.girard $
34
# $LastChangedDate: 2012-12-28 00:06:56 +0100 (Fri, 28 Dec 2012) $
35
#------------------------------------------------------------------------------
36 2 olivier.gi
 
37
global clients
38
global server
39
 
40 172 olivier.gi
global CpuNr
41
set    CpuNr 0
42 2 olivier.gi
 
43 172 olivier.gi
 
44 2 olivier.gi
###############################################################################
45
#                                                                             #
46
#                           START/STOP LOCAL SERVER                           #
47
#                                                                             #
48
###############################################################################
49
 
50 172 olivier.gi
proc startServer { CpuNr } {
51
    global server
52 2 olivier.gi
 
53 172 olivier.gi
    if {![info exists server($CpuNr,socket)]} {
54
        putsLog "CORE $CpuNr: Open socket on port $server($CpuNr,port)... " 1
55
        if {[catch {socket -server "clientAccept $CpuNr" $server($CpuNr,port)} server($CpuNr,socket)]} {
56 158 olivier.gi
            putsLog "failed"
57 172 olivier.gi
            putsLog "CORE $CpuNr: ERROR: $server($CpuNr,socket)."
58
            unset server($CpuNr,socket)
59 158 olivier.gi
            return 0
60
        }
61
        putsLog "done"
62 172 olivier.gi
        putsLog "CORE $CpuNr: INFO: Waiting on TCP port $server($CpuNr,port)"
63 2 olivier.gi
    } else {
64 172 olivier.gi
        putsLog "CORE $CpuNr: Server is already up and running."
65 2 olivier.gi
    }
66
    return 1
67
}
68
 
69 172 olivier.gi
proc stopAllServers { } {
70 158 olivier.gi
    global omsp_info
71 2 olivier.gi
    global server
72 172 olivier.gi
    global omsp_nr
73 2 olivier.gi
 
74 172 olivier.gi
    for { set CpuNr 0 } { $CpuNr < $omsp_nr } { incr CpuNr } {
75
 
76
        if {[info exists server($CpuNr,socket)]} {
77
            set port [lindex [fconfigure $server($CpuNr,socket) -sockname] 2]
78
            putsLog "CORE $CpuNr: Stop server (port $port)"
79
            close $server($CpuNr,socket)
80
            unset server($CpuNr,socket)
81
        }
82
        if {$omsp_info($CpuNr,connected)} {
83
            ReleaseDevice $CpuNr 0xfffe
84
        }
85 2 olivier.gi
    }
86
}
87
 
88 172 olivier.gi
proc clientAccept {CpuNr sock addr port} {
89 2 olivier.gi
    global clients
90
 
91 172 olivier.gi
    putsLog "CORE $CpuNr: Accept client: $addr ($port)\n"
92 2 olivier.gi
 
93 172 olivier.gi
    set clients($CpuNr,addr,$sock) [list $addr $port]
94 2 olivier.gi
    fconfigure $sock -buffering none
95 172 olivier.gi
    fileevent  $sock readable [list receiveRSPpacket $CpuNr $sock]
96 2 olivier.gi
 
97 158 olivier.gi
    InitBreakUnits $CpuNr
98 2 olivier.gi
}
99
 
100
proc startServerGUI { } {
101 158 olivier.gi
    global omsp_conf
102 110 olivier.gi
    global omsp_info
103 172 olivier.gi
    global omsp_nr
104
    global breakSelect
105 2 olivier.gi
 
106 172 olivier.gi
    # Connect to all devices
107
    set connection_status 0
108
    set connection_sum    0
109
    for { set CpuNr 0 } { $CpuNr < $omsp_nr } { incr CpuNr } {
110
        set connection_ok  [GetDevice $CpuNr]
111
        set connection_sum [expr $connection_sum + $connection_ok]
112
        if {$connection_ok==0} {
113
            set error_nr "$CpuNr"
114
        }
115 2 olivier.gi
    }
116 172 olivier.gi
    if {$connection_sum==$omsp_nr} {
117
        set connection_status 1
118
    }
119 2 olivier.gi
 
120 172 olivier.gi
    if {!$connection_status} {
121
        .info.cpu.con   configure -text "Connection problem" -fg red
122
        putsLog ""
123
        putsLog "ERROR: Could not connect to Core $error_nr"
124
        putsLog ""
125
        putsLog "         -----------------------------------------------------------------------"
126
        putsLog "       !!!! Please consider the following options:                            !!!!"
127
        putsLog "       !!!!                                                                   !!!!"
128
        putsLog "       !!!!      - make sure \"$omsp_conf(device)\" is the right device."
129
        putsLog "       !!!!      - check the physical connection to the board.                !!!!"
130
        putsLog "       !!!!      - adjust the serial connection baudrate.                     !!!!"
131
        putsLog "       !!!!      - for UART, don't forget to reset the serial debug interface !!!!"
132
        putsLog "       !!!!        between each attempt.                                      !!!!"
133
        putsLog "       !!!!      - for I2C, make sure $omsp_conf($error_nr,cpuaddr) the is the right address.            !!!!"
134
        putsLog "         -----------------------------------------------------------------------"
135
        putsLog ""
136
        return 0
137
    }
138
 
139
    if {$breakSelect==1} {
140
        if {$omsp_info(0,hw_break)==0} {
141
            .info.cpu.con   configure -text "No Hardware breakpoint unit detected" -fg red
142
            putsLog ""
143
            putsLog "ERROR: Could not detect any Hardware Breakpoint Unit"
144
            putsLog "       Consider switching to the Software Breakpoint configuration"
145
            putsLog ""
146
            return 0
147
        }
148
    }
149
 
150
    if {$omsp_info(0,alias)==""} {
151 158 olivier.gi
        .info.cpu.con   configure -text "Connected" -fg "\#00ae00"
152 110 olivier.gi
    } else {
153 172 olivier.gi
        .info.cpu.con   configure -text "Connected to $omsp_info(0,alias)" -fg "\#00ae00"
154 110 olivier.gi
    }
155
 
156 2 olivier.gi
    # Display info
157
    putsLog "INFO: Sucessfully connected with the openMSP430 target."
158 172 olivier.gi
    set sizes [GetCPU_ID_SIZE 0]
159
    if {$omsp_info(0,asic)} {
160
        putsLog "INFO: CPU Version              - $omsp_info(0,cpu_ver) / ASIC"
161 110 olivier.gi
    } else {
162 172 olivier.gi
        putsLog "INFO: CPU Version              - $omsp_info(0,cpu_ver) / FPGA"
163 110 olivier.gi
    }
164 172 olivier.gi
    putsLog "INFO: User Version             - $omsp_info(0,user_ver)"
165
    if {$omsp_info(0,cpu_ver)==1} {
166 158 olivier.gi
        putsLog "INFO: Hardware Multiplier      - --"
167 172 olivier.gi
    } elseif {$omsp_info(0,mpy)} {
168 158 olivier.gi
        putsLog "INFO: Hardware Multiplier      - Yes"
169 110 olivier.gi
    } else {
170 158 olivier.gi
        putsLog "INFO: Hardware Multiplier      - No"
171 110 olivier.gi
    }
172 172 olivier.gi
    putsLog "INFO: Program Memory Size      - $omsp_info(0,pmem_size) B"
173
    putsLog "INFO: Data Memory Size         - $omsp_info(0,dmem_size) B"
174
    putsLog "INFO: Peripheral Address Space - $omsp_info(0,per_size) B"
175
    putsLog "INFO: $omsp_info(0,hw_break) Hardware Break/Watch-point unit(s) detected"
176 110 olivier.gi
    putsLog ""
177 2 olivier.gi
 
178 87 olivier.gi
    # Activate Load TCL script section
179
    .tclscript.ft.l          configure -state normal
180
    .tclscript.ft.file       configure -state normal
181
    .tclscript.ft.browse     configure -state normal
182
    .tclscript.fb.read       configure -state normal
183
 
184 110 olivier.gi
    # Activate extra cpu info button
185
    .info.cpu.more           configure -state normal
186
 
187 172 olivier.gi
    for { set CpuNr 0 } { $CpuNr < $omsp_nr } { incr CpuNr } {
188 2 olivier.gi
 
189 172 olivier.gi
        # Reset & Stop CPU
190
        ExecutePOR_Halt $CpuNr
191
 
192
        # Start server for GDB
193
        if {![startServer $CpuNr]} {
194
            .info.server.con configure -text "Connection problem" -fg red
195
            return 0
196
        }
197 2 olivier.gi
    }
198 172 olivier.gi
 
199 110 olivier.gi
    .info.server.con     configure -text "Running" -fg "\#00ae00"
200 2 olivier.gi
 
201
    # Disable gui entries
202 158 olivier.gi
    .connect.cfg.if.config1.adapter.p1       configure -state disabled
203
    .connect.cfg.if.config2.adapter.p2       configure -state disabled
204
    .connect.cfg.if.config1.serial_port.p1   configure -state disabled
205
    .connect.cfg.if.config2.serial_port.p2   configure -state disabled
206
    .connect.cfg.ad.server_port.p0           configure -state disabled
207
    .connect.cfg.ad.server_port.p1           configure -state disabled
208
    .connect.cfg.ad.server_port.p2           configure -state disabled
209
    .connect.cfg.ad.server_port.p3           configure -state disabled
210
    .connect.cfg.ad.i2c_addr.s0              configure -state disabled
211
    .connect.cfg.ad.i2c_addr.s1              configure -state disabled
212
    .connect.cfg.ad.i2c_addr.s2              configure -state disabled
213
    .connect.cfg.ad.i2c_addr.s3              configure -state disabled
214
    .connect.cfg.ad.i2c_nr.s                 configure -state disabled
215 172 olivier.gi
 
216
    .connect.cfg.ad.i2c_nr.f.soft.b          configure -state disabled
217
    .connect.cfg.ad.i2c_nr.f.soft.r          configure -state disabled
218
    .connect.cfg.ad.i2c_nr.f.hard.r          configure -state disabled
219
    if {[winfo exists .omsp_sft_brk]} {
220
        .omsp_sft_brk.map.b.share            configure -state disabled
221
        .omsp_sft_brk.map.b.dedic            configure -state disabled
222
        .omsp_sft_brk.map.r.core_nr.l0       configure -state disabled
223
        .omsp_sft_brk.map.r.pmem0.p0         configure -state disabled
224
        .omsp_sft_brk.map.r.core_nr.l1       configure -state disabled
225
        .omsp_sft_brk.map.r.pmem0.p1         configure -state disabled
226
        .omsp_sft_brk.map.r.pmem1.p1         configure -state disabled
227
        .omsp_sft_brk.map.r.core_nr.l2       configure -state disabled
228
        .omsp_sft_brk.map.r.pmem0.p2         configure -state disabled
229
        .omsp_sft_brk.map.r.pmem1.p2         configure -state disabled
230
        .omsp_sft_brk.map.r.pmem2.p2         configure -state disabled
231
        .omsp_sft_brk.map.r.core_nr.l3       configure -state disabled
232
        .omsp_sft_brk.map.r.pmem0.p3         configure -state disabled
233
        .omsp_sft_brk.map.r.pmem1.p3         configure -state disabled
234
        .omsp_sft_brk.map.r.pmem2.p3         configure -state disabled
235
        .omsp_sft_brk.map.r.pmem3.p3         configure -state disabled
236
    }
237 2 olivier.gi
}
238
 
239
###############################################################################
240
#                                                                             #
241
#                        RECEIVE / SEND RSP PACKETS                           #
242
#                                                                             #
243
###############################################################################
244
 
245 172 olivier.gi
proc receiveRSPpacket {CpuNr sock} {
246 2 olivier.gi
 
247
    # Get client info
248
    set ip   [lindex [fconfigure $sock -peername] 0]
249
    set port [lindex [fconfigure $sock -peername] 2]
250
 
251
    # Check if a new packet arrives
252
    set rx_packet 0
253 172 olivier.gi
    set rsp_cmd [getDebugChar $CpuNr $sock]
254 2 olivier.gi
    set rsp_sum ""
255
    if {[string eq $rsp_cmd "\$"]} {
256 158 olivier.gi
        set rx_packet 1
257
        set rsp_cmd ""
258 2 olivier.gi
    } else {
259 158 olivier.gi
        binary scan $rsp_cmd H* rsp_cmd
260
        if {$rsp_cmd=="03"} {
261
            putsVerbose "--> BREAK"
262
            HaltCPU $CpuNr
263
        }
264 2 olivier.gi
    }
265
    # Receive packet
266
    while {$rx_packet} {
267 172 olivier.gi
        set char [getDebugChar $CpuNr $sock]
268 158 olivier.gi
        if {$char==-1} {
269
            set    rx_packet 0
270
        } elseif {[string eq $char "\#"]} {
271
            set    rx_packet 0
272 172 olivier.gi
            set    rsp_sum   [getDebugChar $CpuNr $sock]
273
            append rsp_sum   [getDebugChar $CpuNr $sock]
274 2 olivier.gi
 
275 158 olivier.gi
            # Re-calculate the checksum
276
            set    tmp_sum   [RSPcheckSum  $rsp_cmd]
277 2 olivier.gi
 
278 158 olivier.gi
            # Acknowledge and analyse the packet
279
            if {[string eq $rsp_sum $tmp_sum]} {
280
                putDebugChar $sock "+"
281 2 olivier.gi
 
282 158 olivier.gi
                # Remove escape characters
283
                set rsp_cmd [removeEscapeChar $rsp_cmd]
284 172 olivier.gi
                putsVerbose "CORE $CpuNr: + w $rsp_cmd"
285 2 olivier.gi
 
286 158 olivier.gi
                # Parse packet and send back the answer
287 172 olivier.gi
                set rsp_answer [rspParse $CpuNr $sock $rsp_cmd]
288 158 olivier.gi
                if {$rsp_answer != "-1"} {
289 172 olivier.gi
                    sendRSPpacket $CpuNr $sock $rsp_answer
290 158 olivier.gi
                }
291
            } else {
292
                putDebugChar $sock "-"
293
            }
294
        } else {
295
            append rsp_cmd $char
296
        }
297 2 olivier.gi
    }
298
}
299
 
300
 
301 172 olivier.gi
proc sendRSPpacket {CpuNr sock rsp_cmd} {
302 2 olivier.gi
 
303
    # Set escape characters
304
    set rsp_cmd [setEscapeChar $rsp_cmd]
305
 
306
    # Calculate checksum
307
    set rsp_sum [RSPcheckSum  $rsp_cmd]
308
 
309
    # Format the packet
310
    set rsp_packet "\$$rsp_cmd\#$rsp_sum"
311
 
312
    # Send the packet until the "+" aknowledge is received
313
    set send_ok 0
314
    while {!$send_ok} {
315 158 olivier.gi
        putDebugChar $sock "$rsp_packet"
316 172 olivier.gi
        set char [getDebugChar $CpuNr $sock]
317 2 olivier.gi
 
318 172 olivier.gi
        putsVerbose "CORE $CpuNr: $char r $rsp_cmd"
319 2 olivier.gi
 
320 158 olivier.gi
        if {$char==-1} {
321
            set    send_ok 1
322
        } elseif {[string eq $char "+"]} {
323
            set    send_ok 1
324
        }
325 2 olivier.gi
    }
326
}
327
 
328
 
329
###############################################################################
330
#                                                                             #
331
#                   CHECKSUM / ESCAPE CHAR / RX / TX FUNCTIONS                #
332
#                                                                             #
333
###############################################################################
334
 
335
proc RSPcheckSum {rsp_cmd} {
336
 
337
    set    rsp_sum   0
338
    for {set i 0} {$i<[string length $rsp_cmd]} {incr i} {
339 158 olivier.gi
        scan [string index $rsp_cmd $i] "%c" char_val
340
        set rsp_sum [expr $rsp_sum+$char_val]
341 2 olivier.gi
    }
342
    set rsp_sum [format %02x [expr $rsp_sum%256]]
343
 
344
    return $rsp_sum
345
}
346
 
347
proc removeEscapeChar {rsp_cmd} {
348
 
349
    # Replace all '\}0x03' characters with '#'
350
    regsub -all "\}[binary format H* 03]" $rsp_cmd "\#" rsp_cmd
351
 
352
    # Replace all '\}0x04' characters with '$'
353
    regsub -all "\}[binary format H* 04]" $rsp_cmd "\$" rsp_cmd
354
 
355
    # Replace all '\}\]' characters with '\}'
356
    regsub -all "\}\]" $rsp_cmd "\}" rsp_cmd
357
 
358
    return "$rsp_cmd"
359
}
360
 
361
proc setEscapeChar {rsp_cmd} {
362
 
363
    # Escape all '\}' characters with '\}\]'
364
    regsub -all "\}" $rsp_cmd "\}\]" rsp_cmd
365
 
366
    # Escape all '$' characters with '\}0x04'
367
    regsub -all "\\$" $rsp_cmd "\}[binary format H* 04]" rsp_cmd
368
 
369
    # Escape all '#' characters with '\}0x03'
370
    regsub -all "\#" $rsp_cmd "\}[binary format H* 03]" rsp_cmd
371
 
372
    return "$rsp_cmd"
373
}
374
 
375
 
376 172 olivier.gi
proc getDebugChar {CpuNr sock} {
377 2 olivier.gi
    global clients
378
 
379
    # Get client info
380
    set ip   [lindex [fconfigure $sock -peername] 0]
381
    set port [lindex [fconfigure $sock -peername] 2]
382
 
383
    if {[eof $sock] || [catch {set char [read $sock 1]}]} {
384 158 olivier.gi
        # end of file or abnormal connection drop
385
        close $sock
386 172 olivier.gi
        putsLog "CORE $CpuNr: Connection closed: $ip ($port)\n"
387
        unset clients($CpuNr,addr,$sock)
388 158 olivier.gi
        return -1
389 2 olivier.gi
    } else {
390 158 olivier.gi
        return $char
391 2 olivier.gi
    }
392
}
393
 
394
 
395
proc putDebugChar {sock char} {
396
    puts -nonewline $sock $char
397
}
398 110 olivier.gi
 
399
###############################################################################
400
#                                                                             #
401
#                          GUI: DISPLAY EXTRA INFO                            #
402
#                                                                             #
403
###############################################################################
404
 
405
proc displayMore  { } {
406
 
407
    global omsp_info
408
 
409
    # Destroy windows if already existing
410
    if {[lsearch -exact [winfo children .] .omsp_extra_info]!=-1} {
411 158 olivier.gi
        destroy .omsp_extra_info
412 110 olivier.gi
    }
413
 
414
    # Create master window
415
    toplevel    .omsp_extra_info
416
    wm title    .omsp_extra_info "openMSP430 extra info"
417
    wm geometry .omsp_extra_info +380+200
418
    wm resizable .omsp_extra_info 0 0
419
 
420
    # Title
421
    set title "openMSP430"
422 172 olivier.gi
    if {$omsp_info(0,alias)!=""} {
423
        set title $omsp_info(0,alias)
424 110 olivier.gi
    }
425
    label  .omsp_extra_info.title  -text "$title"   -anchor center -fg "\#00ae00" -font {-weight bold -size 16}
426
    pack   .omsp_extra_info.title  -side top -padx {20 20} -pady {20 10}
427
 
428
    # Add extra info
429
    frame     .omsp_extra_info.extra
430
    pack      .omsp_extra_info.extra         -side top  -padx 10  -pady {10 10}
431
    scrollbar .omsp_extra_info.extra.yscroll -orient vertical   -command {.omsp_extra_info.extra.text yview}
432
    pack      .omsp_extra_info.extra.yscroll -side right -fill both
433
    text      .omsp_extra_info.extra.text    -wrap word -height 20 -font TkFixedFont -yscrollcommand {.omsp_extra_info.extra.yscroll set}
434
    pack      .omsp_extra_info.extra.text    -side right
435
 
436
    # Create OK button
437
    button .omsp_extra_info.okay -text "OK" -font {-weight bold}  -command {destroy .omsp_extra_info}
438
    pack   .omsp_extra_info.okay -side bottom -expand true -fill x -padx 5 -pady {0 10}
439
 
440
 
441
    # Fill the text widget will configuration info
442
    .omsp_extra_info.extra.text tag configure bold -font {-family TkFixedFont -weight bold}
443
    .omsp_extra_info.extra.text insert end         "Configuration\n\n" bold
444 172 olivier.gi
    .omsp_extra_info.extra.text insert end [format "CPU Version                : %5s\n" $omsp_info(0,cpu_ver)]
445
    .omsp_extra_info.extra.text insert end [format "User Version               : %5s\n" $omsp_info(0,user_ver)]
446
    if {$omsp_info(0,cpu_ver)==1} {
447 110 olivier.gi
    .omsp_extra_info.extra.text insert end [format "Implementation             : %5s\n" --]
448 172 olivier.gi
    } elseif {$omsp_info(0,asic)==0} {
449 110 olivier.gi
    .omsp_extra_info.extra.text insert end [format "Implementation             : %5s\n" FPGA]
450 172 olivier.gi
    } elseif {$omsp_info(0,asic)==1} {
451 110 olivier.gi
    .omsp_extra_info.extra.text insert end [format "Implementation             : %5s\n" ASIC]
452
    }
453 172 olivier.gi
    if {$omsp_info(0,mpy)==1} {
454 110 olivier.gi
    .omsp_extra_info.extra.text insert end [format "Hardware Multiplier support: %5s\n" Yes]
455 172 olivier.gi
    } elseif {$omsp_info(0,mpy)==0} {
456 110 olivier.gi
    .omsp_extra_info.extra.text insert end [format "Hardware Multiplier support: %5s\n" No]
457
    } else {
458
    .omsp_extra_info.extra.text insert end [format "Hardware Multiplier support: %5s\n" --]
459
    }
460 172 olivier.gi
    .omsp_extra_info.extra.text insert end [format "Program memory size        : %5s B\n" $omsp_info(0,pmem_size)]
461
    .omsp_extra_info.extra.text insert end [format "Data memory size           : %5s B\n" $omsp_info(0,dmem_size)]
462
    .omsp_extra_info.extra.text insert end [format "Peripheral address space   : %5s B\n" $omsp_info(0,per_size)]
463
    if {$omsp_info(0,alias)==""} {
464 110 olivier.gi
    .omsp_extra_info.extra.text insert end [format "Alias                      : %5s\n\n\n" None]
465
    } else {
466 172 olivier.gi
    .omsp_extra_info.extra.text insert end [format "Alias                      : %5s\n\n\n" $omsp_info(0,alias)]
467 110 olivier.gi
    }
468
 
469
    .omsp_extra_info.extra.text insert end         "Extra Info\n\n" bold
470
 
471 172 olivier.gi
    if {$omsp_info(0,alias)!=""} {
472 110 olivier.gi
 
473 158 olivier.gi
        set aliasEXTRA  [lsort -increasing [array names omsp_info -glob "extra,*"]]
474
        if {[llength $aliasEXTRA]} {
475 110 olivier.gi
 
476 158 olivier.gi
            foreach currentEXTRA $aliasEXTRA {
477
                regexp {^.+,.+,(.+)$} $currentEXTRA whole_match extraATTR
478 172 olivier.gi
                .omsp_extra_info.extra.text insert end     [format "%-15s: %s\n" $extraATTR  $omsp_info(0,$currentEXTRA)]
479 158 olivier.gi
            }
480
            .omsp_extra_info.extra.text insert end         "\n\n"
481
        }
482 110 olivier.gi
    } else {
483 158 olivier.gi
        .omsp_extra_info.extra.text insert end  "No alias found in 'omsp_alias.xml' file"
484 110 olivier.gi
    }
485
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.