Thanks Zenta, Your video showing this looks great!
Xan, what do you think of integrating some of this into this release. I could take a stab at it with my current test version, probably both PS2 and XBee and if you like it you could incorporate into the main official version.
I have not tried moving the XBee over yet. Still playing with PS2 and ARC32 stuff. Arc32 stuff I think is mostly working. Issue with GP player with one sequence having data problems, may be caused as my Phoenix has a prerelease Arc32 board in it. I should maybe break down the phoenix and replace it with a production board. I did put some recovery code in so it does not hang now. But I have run into an issue with the PS2 on the Arc32, that at times it falls out of Analog mode. My Arc32 version detected this and reran the init code. You will run into this if you run a sequence and during that time you do not do any PS2 input and something times out. I updated my copy of the code to detect this and recover. It currently looks like:
In control Input I added the code to read in the current mode and if it is not the padmode call back to the init… But Not all of the init…
[code]ControlInput:
low PS2SEL
shiftout PS2CMD,PS2CLK,LSBPRE,$1\8]
shiftin PS2DAT,PS2CLK,LSBPOST,[DS2Mode\8]
high PS2SEL
pause 1
if(DS2Mode <> PadMode)then
gosub RetryPs2TestInit ; use secondary name so does not depend on if XBee is also defined…
endif
low PS2SEL
shiftout PS2CMD,PS2CLK,FASTLSBPRE,$1\8,$42\8]
shiftin PS2DAT,PS2CLK,FASTLSBPOST,[DualShock(0)\8, DualShock(1)\8, DualShock(2)\8, DualShock(3)\8, |
DualShock(4)\8, DualShock(5)\8, DualShock(6)\8]
high PS2SEL
pause 10 [/code]
In the init function I have:
[code]InitController:
#if PS2DAT = 0
PUCR5.bit0 = 1 ; Note these pull-ups may not be sufficient for all PS2 remotes.
#endif
#if PS2DAT = 16
PUCR1.bit1 = 0x1 ; 16 is on H8 P11 which has a pull-up
#endif
high PS2CLK
LastButton(0) = 255
LastButton(1) = 255
BodyYOffset = 0
BodyYShift = 0
RetryPs2TestInit:
…[/code]
That is I don’t reset the other variables… You can obviously disregard the other IO pin init code… I have uploaded a zip file that has a project that allows me to test multiple projects. It has multiple config files with ifdefs, it has a config_config file that allows me to choose which one. I will add an XBEE control file here as well and maybe an RC and maybe a modified RC (one IO line), that I can change a setting and try. Obviously this is not the way we would distribute it, but it does make it easy for me to try different things out…
Update: With ARC32 version I run into issue that at startup the robot servos would all jump… I figured it out that The function GOSUB CommitServoDriver was being called even when the robot was not active. It was in this function that I am calling HSERVO. I moved the call inside the IFDEF for HEXON and the Arc32 is happier. The zip file was updated with this change.
Phoenix21k.zip (24.4 KB)