Changes between Version 17 and Version 18 of Docs/825gen2/Dev/GettingStarted
- Timestamp:
- 11/09/23 11:44:00 (12 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/825gen2/Dev/GettingStarted
v17 v18 101 101 102 102 The file may be copied to the 825 using the scp command such as: 103 103 {{{ 104 104 scp /srv/nfs/arm825_nand/apps/ids_dbg root@10.1.0.176:/mnt/nand/apps 105 }}} 105 106 106 107 However, it is often useful to not copy the file to the 825 every time. Instead the 825 can mount the VM drive with NFS so that the file can be run while still in the VM. … … 111 112 112 113 First time for each session: 114 {{{ 113 115 source test825 <ip address of VM> 114 116 }}} 115 117 Period is a shortcut for source command. 116 118 117 119 For example: 118 120 {{{ 119 121 . test825 10.1.5.157 120 122 }}} 121 123 (a space is necessary after the period) 122 124 123 125 Then from ssh into the 825 make sure appropriate directory is selected such as: 124 126 {{{ 125 127 cd /mnt/nfs/arm825_nand/apps 126 128 }}} 127 129 Run the app 130 {{{ 128 131 ./ids_dbg 129 132 }}} 130 133 It is best to exit the app when done instead of Ctrl-C. If the app is terminated with Ctrl-C it may not cleanup and leave mainboard communications in an undesirable state. 131 134