-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dear Ian,
with your precompiled .UF2 I do get 2 serial (COM 36&37 - new TinyUSB numbers) ports, but when I do compile for myself then I did get only one serial port (COM25) like on the compile before the change in tusb_config.h)
My pico-sdk is cloned from https://github.com/raspberrypi/pico-sdk.git
So the tusb_config.h is on my system at /home/pi/pico/pico-sdk/src/rp2_common/pico_stdio_usb/include
I changed the line
#define CFG_TUD_CDC (1)
to
#define CFG_TUD_CDC (2)
I also recloned the pico-sdk to have the acutal version - but no change :(
Is there anything else to change? (I cleared also the build directory before recompiling)
PS: cmake says
TinyUSB available at /home/pi/pico/pico-sdk/lib/tinyusb/src/portable/raspberrypi/rp2040; enabling build support for USB.Kind regards
Guido
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dear Ian,
Hmm - cant see the attachment :(
Kind regards
Guido
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dear Ian,
for me it looks like that github is blocking your attachments when you did replay via email to github and not using github directly :(
After some clicking around I did found the content of the attached .txt file, but this didnt work as replacement for tusb_config.h
tusb_file.txt
Kind regards
Guido
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello, I am interested in the project because I like pdp-11, and I am interested in microcontrollers. One question regarding the rsx11 image. I am interested in where it comes from and how it is configured and generated. It is quite an old version and there is no DCL, I would like to try to adapt the newer version to see if it will work. Even 3.2 would be enough. Do you have that information? Thank you.
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dear Ian,
maybe the follwing instructions - for a PDP 11/40 build - are a better/shorter way for getting RX-11 onto a RL02 .dks image?:
Build a bootable RSX11/M on RL02 disk
Or this RK07-image (RSX-11M V3.2 for 11/45, 124KW, 50HZ (RK07 image)) could be downstripped?
PS: cant also see the second attachment :(
Kind regards,
Guido
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dear Ian,
this link did work and also the file stdio_usb_descriptors.c for the path
/pico-sdk/src/rp2_common/pico_stdio_usb/
did help to get 2 serial ports displayed ;)
The second port (on my system the COM37) is the first terminal port (for the boot-menu).
I assume then the first port (COM36) will work as the second terminal port (havent tested it yet).
stdio_usb_descriptors.zip
BUT with the changes for 2 CDC-Terminals my changes for a serial port version doesnt compile anymore, because I have to disable tinyusb (because I oly use 1 serial/terminal) - so this will stall the serial verison!? :(
[ 13%] Building CXX object CMakeFiles/Pico_1140.dir/dl11.cxx.obj /home/pi/pico/Pico_1140/Pico_1140_DC_serial/dl11.cxx: In function 'int _kbhit()': /home/pi/pico/Pico_1140/Pico_1140_DC_serial/dl11.cxx:29:16: error: 'tud_cdc_n_available' was not declared in this scope 29 | return tud_cdc_n_available(1); | ^~~~~~~~~~~~~~~~~~~ /home/pi/pico/Pico_1140/Pico_1140_DC_serial/dl11.cxx: In member function 'void DL11::serial_putchar(char)': /home/pi/pico/Pico_1140/Pico_1140_DC_serial/dl11.cxx:34:9: error: 'tud_cdc_n_write_char' was not declared in this scope 34 | tud_cdc_n_write_char(1,c); | ^~~~~~~~~~~~~~~~~~~~ /home/pi/pico/Pico_1140/Pico_1140_DC_serial/dl11.cxx:35:9: error: 'tud_cdc_n_write_flush' was not declared in this scope 35 | tud_cdc_n_write_flush(1); | ^~~~~~~~~~~~~~~~~~~~~ /home/pi/pico/Pico_1140/Pico_1140_DC_serial/dl11.cxx: In member function 'char DL11::serial_getchar()': /home/pi/pico/Pico_1140/Pico_1140_DC_serial/dl11.cxx:39:16: error: 'tud_cdc_n_read_char' was not declared in this scope 39 | return tud_cdc_n_read_char(1); | ^~~~~~~~~~~~~~~~~~~ make[2]: *** [CMakeFiles/Pico_1140.dir/build.make:258: CMakeFiles/Pico_1140.dir/dl11.cxx.obj] Error 1 make[1]: *** [CMakeFiles/Makefile2:1403: CMakeFiles/Pico_1140.dir/all] Error 2 make: *** [Makefile:91: all] Error 2Kind regards
Guido
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
HI, I am made a rsx11-v4.0-bl32 image on rl02 disk with DCL, 2 users (system and user), for now, without compilers but this part come soon.
rsxm32.rl02.zip
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
427b079There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.