Hi Xan,
Well, actually studio does get confused, it thinks that the file opened up is only used in the project that was opened from and if I do a compile of another one, it does not save away the files… But I can work with it…
PS2: The DAT line of the PS2 requires a pull-up resistor. That is on an actual Ps2 console, there may be multiple controllers on the same input line, so the active one when necessary will pull the data line low, but they never set it high. On the actual PS2 controller they also had a pull-up on the clock line as well, but we don’t need that as our code actively puts the value high and low. The ABB had pull-ups on P4 and P7, which worked for Atom but not Pros… So BB2 put ones on P12 and P15. So if you now need to move the PS2 to different pins, you need to add some form of pull-up to DAT line. It turns out on the H8 of the Bap28, some of the IO pins do have built-in pull-ups that can be enabled. They are very weak, but work for most of the Lynxmotion PS2 receivers. This is what I had the code try to enable.
There are a variety of ways to add the pull-up code, which on the BAP, which is pin specific, but simply requires you to set an appropriate bit in one of the H8 IO registers… We could add the option you mentioned, but personally not sure if it makes the code easier to read than simply having the IF being driven by the actual value of PS2DAT, but for the most part this is all minor stuff…
Actually it is all BAP code we are talking about
You removed all of the non Bap28 code.
I totally understand your desire to have 100% clean code, that is specific to the end users specific configuration. But I don’t think we can or should try to get 100% there. Example: None of my Hex robots have EYES, so there is code in the main area that is not specific to any configuration that Lynxmotion sells. I personally think EYE code should be under a #ifdef of the pin number…) So to be completely clean we should build configurations of the code that PS2 based with eyes and another version of the code for PS2 without eyes. And none of my robots have LIPOS, so we should build versions with PS2 with or without Eyes and with or without LIPOS. So in theory we could end up with quite a few configurations, which would also be extremely confusing. Especially if later I decided to change something in my configuration, what file(s) do I need to update if I now have a LIPO or … But to be clear I totally agree with your desire to reduce this to a reasonable minimum, which is why in the code that I have that I have been integrating in this, I have removed a lot of built in debug code that I can compile in or out. Sometimes I think of leaving some, for example PS2 diagnostic code that I could turn on to see what data is being received. Why would I potentially leave this? Because I can not count the number of times I have had to recreate this for users whose PS2 does not work…
Yes I could create new code files for each of the BAP platforms. The main thing that changes is the Timer. They are also simple differences. The only things that change are the Timer variables, Interrupt name and conversion factor to convert the counts to milli seconds. Boy how I wish the BAP stuff had better ways to abstract things. That is with Arduino code I simply call millis(); I don’t care what speed the CPU is, the same code works if running on 168, 328, 1280… Will also need to move some or all of the LIPO safety code there as well. Why? Because in their infinite wisdom, when they created the Arc32 they decided to add a new command HServoStat to read in the Analog data, instead of abstracting out the hardware implementation and simply having the user use the adin command…
Xan, I hope you don’t think I am trying to fight you here, I think you are doing a great job. I am simply trying keep the code as inclusive to as many people as possible. I also worry that when new functionality is added, it will be only usable to the users who have that exact configuration, or there will be 10 versions of the same code, all slightly different, which can also be a pain to maintain… So hopefully we will find a happy medium… I can see a day that we are adding TA code and you run out of code or data space on the Bap28 and have to make decisions. Maybe it will be to add options to the code to #ifdef out parts of it, or maybe you will decide to try an Arc32 or… Just trying to keep our options open.
On the running sequences code with speed changes. I have most of the code in place. Still a little more to do, but I know what it is. Will also add that the Arc32 version as well and then will upload new set of projects to look at.
On DIY XBee, I have it compiling, but I need to figure out different configurations for this as mine does not have the extra pots that Zenta’s does, so need to remap some (Probably under ifdefs
). Was also waiting for your drop last night as the rotation stuff has code in it for changing the rotation centers, which it sounded like you added to the main code…
Kurt
Xan,