Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
Robotics Programming IT Technology

A Standardized OS For Robots 184

Hugh Pickens writes "The New Scientist reports that at present, all robot software is designed uniquely, even for parts common to all robots but that could be about to change as roboticists have begun to think about what robots have in common and what aspects of their construction can be standardized, resulting in a basic operating system everyone can use. 'It's easier to build everything from the ground up right now because each team's requirements are so different,' says Anne-Marie Bourcier of Aldebaran Robotics but Bourcier sees this changing if robotics advances in a manner similar to personal computing where a common operating system allowed programmers without detailed knowledge of the underlying hardware and file systems to build new applications and build on the work of others. 'Robotics is at the stage where personal computing was about 30 years ago,' says Chad Jenkins of Brown University. 'But at some point we have to come together to use the same resources.' This desire has its roots in frustration, says Brian Gerkey of the robotics research firm Willow Garage. If someone is studying object recognition, they want to design better object-recognition algorithms, not write code to control the robot's wheels. "You know that those things have been done before, probably better," says Gerkey, who hopes to one day see a robot "app store" where a person could download a program for their robot and have it work as easily as an iPhone app."
This discussion has been archived. No new comments can be posted.

A Standardized OS For Robots

Comments Filter:
  • Can't wait (Score:3, Insightful)

    by nizo ( 81281 ) * on Tuesday August 11, 2009 @08:58AM (#29022171) Homepage Journal

    Though I will worry when the most purchased robot app is "machinegun control".

  • Robot Virii (Score:5, Insightful)

    by musichead ( 800784 ) on Tuesday August 11, 2009 @09:03AM (#29022237)
    That's all we need....a standardized API to allow malware writers access to robots...
  • Hush... (Score:2, Insightful)

    by jurgemaister ( 1497135 ) on Tuesday August 11, 2009 @09:04AM (#29022265)
    Just don't tell msft.
  • Android (Score:5, Insightful)

    by Fyre2012 ( 762907 ) on Tuesday August 11, 2009 @09:07AM (#29022299) Homepage Journal
    seems obvious
  • Please... (Score:1, Insightful)

    by Anonymous Coward on Tuesday August 11, 2009 @09:08AM (#29022307)

    Make it opensource so I dont have to have a tin foil hat AND a kevlar west, in case of operator kill remote controlled applications that switch on when i violate the iRobat SDK DMCA.

  • BS! (Score:3, Insightful)

    by AlgorithMan ( 937244 ) on Tuesday August 11, 2009 @09:31AM (#29022571) Homepage
    Robots don't need a common OS, they need a common programming-language. Golog is imho very good for this purpose...
  • Re:Can't wait (Score:4, Insightful)

    by haifastudent ( 1267488 ) on Tuesday August 11, 2009 @09:34AM (#29022621)

    Though I will worry when the most purchased robot app is "machinegun control".

    I will worry more when this project leads to a situation in which there is little or no diversity in the robot OS. Then the outsiders will be like us Linux users today, but worse off.

    "Oh, you use Debian instead of Windows For Robots? We don't serve your kind here"

  • by qazwart ( 261667 ) on Tuesday August 11, 2009 @09:39AM (#29022659) Homepage

    Please, please don't let the new Robot OS be Windows!

    Robot 1: Fools! There is no stopping now that we've upgraded to Vista SP3!
    Robot 2: Actually, that was just a bug patch for a Windows Media Vulnerability.
    Robot 1: We're dead meat, aren't we.

  • by ejtttje ( 673126 ) on Tuesday August 11, 2009 @09:45AM (#29022729) Homepage
    It's a hard problem, I've also worked on for the last several years [tekkotsu.org]. You're combining research problems in AI, computer vision, localization/mapping, motion planning, human interaction, etc.; each of which demands high end hardware to run its computations, but then you want to do it on mobile platforms with tight constraints on power and sensors.

    Then in order to modularize things you have to come up with a generic interface for each piece in order to abstract it. I think this aspect in particular kills reusability, because these pieces are all so interdependent. Each module needs internal state from the other modules to interpret its own data, and depending on the implementation used for each module and the actual robot hardware it's running on, some types of data may or may not be available, and some outputs may or may not be possible. It's a combinatorial explosion of different capabilities, which leads many people to write to their current hardware and their own specific implementations.

    I entirely agree to make progress we need to address this issue. Asking every researcher to reinvent the wheel in all of the related fields before they can work on their own piece is ludicrous. And it doesn't help that many implementations are very sensitive to robot specific parameters, so even if a research publishes his code for a problem (which IMHO should be part-and-parcel of publishing results), you might still have a hard time running it on different hardware where sensor or motor models differ or may not even apply.
  • by CopaceticOpus ( 965603 ) on Tuesday August 11, 2009 @11:15AM (#29023923)

    Having a common software platform which has been tested and debugged across multiple projects should result in more reliable robots exhibiting fewer errors. You've described one of the best potential applications for this software.

  • by lordlod ( 458156 ) on Tuesday August 11, 2009 @11:19AM (#29023981)
    A common well tested operating system that's been used by dozens of other groups will contain far less bugs than code hacked together by your own small bunch of developers.

    It doesn't mean that you don't test it or that you test it less. It's simply means that other people will be testing it as well.
  • by Lord Ender ( 156273 ) on Tuesday August 11, 2009 @01:46PM (#29026227) Homepage

    I don't think you understand the concept of abstraction. The whole point is that the hardware doesn't have to be identical for the programmer to access it in a uniform way. Every servo has an angle. Every range finder returns a range value. Forcing the programmer to implement some sort of PWM to control the device and poll for status is horribly wasteful, compared to having an OS with hardware-specific drivers which provide a standard interface.

    Have you ever programmed a microcontroller to drive a robot? It's messy. Remember when PC games had a list of "supported sound cards" because every app needed its own driver? That was a dark age, and we're still there with robots. But we don't have to be.

"If it ain't broke, don't fix it." - Bert Lantz

Working...