![]() |
4-slot cRIO and default modules
I am very confused about the new module arrangements. Our team bought the new 4-slot cRIO this year. We followed the new convention and put the Analog module in slot 1, Digital module in slot 2 and the Solenoid module in slot 3. But we are trying to figure out if the WPILib would have the correct modules by default so we don't need to explicitly specify the modules when instantiating sensors and switches. This is to make sure our robotics library still works because the code would call GetDefaultXXXModule() to determine where the modules are. I have downloaded the source code of the WPILib. The more I look at it, the more confused I am. It looks like it is still defaulting to the 8-slot arrangement. For example, SensorBase.cpp has the modulePopulation array initialized to the 8-slot arrangement. SensorBase.h also has the following declaration:
Code:
UINT32 SensorBase::m_defaultAnalogModule = 1; |
Re: 4-slot cRIO and default modules
I loaded a modified version of last year's code to the robot and it gave me:
Quote:
|
Re: 4-slot cRIO and default modules
Not sure if this is entirely related, but I know that nowhere in my teams code do we ever reference a specific module. We are using all the latest updates and etc.
If it helps at all, the cRIO imaging tool should show you if you have all the modules in the right slots. |
Re: 4-slot cRIO and default modules
Quote:
|
Re: 4-slot cRIO and default modules
Quote:
Anyways, I'm not sure I can help you much... The only sections of the WPILib.h source code I've ever studied in depth are the ones directly related to driving the robot, and receiving input from joysticks; among some other random stuff. This might be a dumb suggestion, but have you tried just running the simpletemplate? |
Re: 4-slot cRIO and default modules
I don't think you're looking at this year's code.
|
Re: 4-slot cRIO and default modules
That's what I thought, but I got it off the latest from first forge.
http://firstforge.wpi.edu/sf/scm/do/...cts.wpilib/scm |
Re: 4-slot cRIO and default modules
Quote:
|
Re: 4-slot cRIO and default modules
Quote:
|
Re: 4-slot cRIO and default modules
Quote:
|
Re: 4-slot cRIO and default modules
Quote:
thats where I get the source code I read to learn more about motor control and joysticks. |
Re: 4-slot cRIO and default modules
Quote:
Code:
static UINT32 GetDefaultAnalogModule() { return 1; } |
Re: 4-slot cRIO and default modules
That's because it's not a slot number. The whole paradigm for referencing the modules has changed to support the 4-slot cRIO. The 1st of each module (analog, digital, solenoid) in slots 1-3 is module 1 of that type. The 2nd instance (slot 4 on 4-slot, slots 5-7 on 8-slot) is module 2 of each type.
|
Re: 4-slot cRIO and default modules
Ah I see. So in other words, all the methods involving modules (previously slots) are incompatible with previous versions. For example, for the gyro module, one of the constructors Gyro(UINT8 moduleNumber, UINT32 channel) is no longer compatible with the previous version Gyro(UINT32 slot, UINT32 channel). If I have old code that instantiate a gyro with a secondary Analog module in slot 3, for example. The code would look like Gyro(3, 1). But for this year, I have to put the secondary analog module in slot 5 (assuming a 8-slot cRIO) and initiate it with Gyro(2, 1). Does it sound about right?
Does it mean that I can no longer put the modules anywhere I want but it has to be "Analog, Digital, Solenoid, ???" in that order? Or the WPILib is smart enough so that I can put, for example, 3 analog modules anywhere, and I can address them by naming them 1 (1st instance of analog), 2 (2nd instance of analog) and 3 (3rd instance of anlog) since it can read the module ID in each slot. |
Re: 4-slot cRIO and default modules
Quote:
|
Re: 4-slot cRIO and default modules
That all sounds about right, other than that you could never put the modules wherever you wanted as far as I know. I believe it used to be Analog in 1 and 2 (may have been 1 and 3), Digital in 4 and 6 and solenoid in 7 and 8.
And yes, backward code comparability has not been maintained. All code that specifically referenced slot numbers (other than analog slot 1 which is 1 either way) must be updated to work in order to work with the new libraries and image. EDIT: Just saw your edit. You must put Analog, Digital, Solenoid in that order in slots 1-3 on either cRIO (solenoid may be omitted). On the 4 slot, the 4th slot can be any module. On the 8 slot the pattern repeats with slots 5-7 with 4 and 8 left empty (any of the "extra" modules may be omitted, but the modules may not be shuffled around). There's a description of the new paradigm in the C++ Getting Started Guide: http://firstforge.wpi.edu/sf/go/doc1197?nav=1 |
Re: 4-slot cRIO and default modules
Quote:
|
Re: 4-slot cRIO and default modules
Quote:
Code:
Gyro(1, 1); //Gyro in slot 1, channel 1 |
Re: 4-slot cRIO and default modules
Quote:
|
Re: 4-slot cRIO and default modules
Quote:
|
Re: 4-slot cRIO and default modules
Quote:
|
Re: 4-slot cRIO and default modules
Sorry about beating the dead horse but I am just curious about why the cRIO has the extra slot and the FPGA does not support it. It seems to me the extra slot is very useful especially in the 4-slot cRIO. For example, it is quite easy to run out of digital I/O channels with encoders taking 2 channels each, teams may want to stick another digital module in slot 4, for example.
Also RufflesRidge mentioned slot 4 of the 4-slot cRIO can take any modules. |
Re: 4-slot cRIO and default modules
You can stick whichever module you need in slot-4 of the cRIO FRC II.
The older cRIO FRC I, was just given the 3+0+3+0 pattern as a design choice. We are unlikely to mix the two up. The FPGA is really full with all it's been given to do. Excess capacity got sucked up to benefit us in other much more potentially useful ways. All resources are limited in one way or another. Engineering is designing and choosing between the optimal tradeoffs for our application. |
Re: 4-slot cRIO and default modules
Quote:
Speaking of dead horses...this is just wrong. :deadhorse: LOL - Bryce |
Re: 4-slot cRIO and default modules
Quote:
|
Re: 4-slot cRIO and default modules
Quote:
|
Re: 4-slot cRIO and default modules
I hope I don't add to the confusion, but it is worth mentioning that the cRIO FPGA is reprogrammable. In its day job, it can have 8 32-bit digital modules if you like, and it is also possible to compile in a slot manager that will map the slots dynamically and make it truly plug-n-play. But, all of this is dependent on the FPGA, and the FRC FPGA uses fixed slots and has a ton of flexibility in what the pins can do.
Greg McKaskle |
Re: 4-slot cRIO and default modules
Quote:
- Bryce |
Re: 4-slot cRIO and default modules
Quote:
|
Greg, we were planning to go with two analogs in slots 1 and 4, and two digitals in slots 2 and 3 on a 4-slot cRIO. We're ordering a 4-slot specifically for that purpose. Are you saying we can't do this. We have no pneumatics this year.
Chris |
Re: 4-slot cRIO and default modules
Quote:
|
| All times are GMT -5. The time now is 12:32. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi