|
COM10 and larger does not work |
 |
 |
Why does my TERMinal not work with COM port 10 or larger?
|
|
The cause of the problem is that CreateFile() accepts strings "com1" -
"com9" as names of devices and reject to do so for two and more digit
numbers.
In order to open "com10" and above we actually have to feed
"\\\\.\\com10" string to CreateFile.
eg. term.method.com \\.\com10 38400. 8 NONE 1STOP NONE
|
|
CYGWIN Pathes |
 |
 |
What loader option is required to convert CYGWIN paths to DOS paths?
|
|
Data.LOAD.Elf <filename>.elf /CYGDRIVE
|
|
Using an external Editor |
 |
 |
How can I use a different Editor like UltraEdit instead of PEDIT from TRACE32?
|
|
You may use other editors. You can add extra commands, buttons or (local) menus to start them. Examples are available on CD and after installation of TRACE32 SW at:
CD\files\demo\practice\edit.cmm
Further descriptions are available at CD\files\pdf:
general_ref_s.pdf page 69 ( sYmbol.SOURCELINE(<address>) )
ide_ref.pdf page 106 (MENU.ReProgram)
Easiest way is to replace the call of EDIT in general by the wanted editor:
SETUP.EDITEXT [ON|OFF] [<string>]
-
[ON|OFF]
Using ON starts your external editor whenever then internal started before. In other words: When "EDIT" command is executed.
When using OFF the external editor is only started by executing the "EDIT.EXTern" command.
-
[<string>]
This string contains the command which Trace32 sends to your OS to start the external editor. In this string a * will be replaced by the current filename and a # by the current line number.
Example for using PowerView with TextPad:
::SETUP.EDITEXT ON "C:\Programme\TextPad\TextPad.exe * (#)"
|