Replies: 7 comments 8 replies
-
I saw this was checked in to main branch. Thanks! |
Beta Was this translation helpful? Give feedback.
-
Thank you @vruumllc It is nice to see the community helping to improve our picocomputers. Unfortunately, I do not have the skills to do these things. |
Beta Was this translation helpful? Give feedback.
-
@vruumllc Thank You :)
Perhaps using two arguments packed into one with a comma between them and then parsed to the two required by f_rename? something like fil.c
fil.h
hlp.c
mon.c
|
Beta Was this translation helpful? Give feedback.
-
or different approach command's has two arguments I successfully added a RENAME command to the RIA with the following mods in proper places: fil.c
fil.h
hlp.c
mon.c
str.c
str.h
|
Beta Was this translation helpful? Give feedback.
-
This is not the direction I want things to go. These things belong on the 6502 side. The boot monitor is not a catch all, it's a monitor for booting the system. |
Beta Was this translation helpful? Give feedback.
-
I've made some minor changes to fil.c, hlp.c and str.c (the above code has already been corrected). |
Beta Was this translation helpful? Give feedback.
-
There's 2KB free on the RIA before memory gets complicated. I understand this seems easy and useful, but once that 2KB is gone then ALL future work becomes more difficult. |
Beta Was this translation helpful? Give feedback.
-
Hi, my usb stick root directory is getting pretty messy and there is currently no way to make subdirectories without removing my usb stick from my case and using a PC, which means unscrewing the case top, etc.
I successfully added a MKDIR command to the RIA with the following mods:
Note that the existing UNLINK command will remove an empty directory as well as files.
With this change in place, I can now create my desired directory structure on the RP6502, change to the desired target directory, then run the python "upload" comand in rp6502.py from my computer to put new files in the desired location.
Addition of a copy and rename commands to the RIA monitor would also be welcome, but the existing command structure doesn't support the required two arguments. The addition of this MKDIR to the next release is easy, and is sufficient for my needs.
Thanks, tonyvr
OOPS! addendum: I guess the parentheses around the arguments in the help should not be there, as the arguments aren't optional.
Also, "HELP MKDIR" should print some meaningful help, and the help for UNLINK could be improved.
Beta Was this translation helpful? Give feedback.
All reactions