Difference between revisions of "Robotino OS"

From RobotinoWiki
(Windows)
(Windows)
Line 36: Line 36:
 
BCDEDIT –Set LoadOptions EENABLE_INTEGRITY_CHECKS
 
BCDEDIT –Set LoadOptions EENABLE_INTEGRITY_CHECKS
 
BCDEDIT –Set TESTSIGNING OFF
 
BCDEDIT –Set TESTSIGNING OFF
 +
</pre>
 +
 +
You also have to disable Microsoft BallPoint driver. If not USB devices might be detected as serial mouse:
 +
<pre>
 +
REG ADD "HKLM\SYSTEM\CurrentControlSet\Services\sermouse" /V Start /T REG_DWORD /F /D 4
 
</pre>
 
</pre>

Revision as of 09:38, 28 March 2019

Introduction

Cfcard 32.png Robotino is powered by Linux (Ubuntu). But it is also possible to install Microsoft Windows on Robotino.


Robotino 3

Robotino 2

Windows

A subset of Robotino's functionality is provided by the robotino-daemons for Windows installer. It includes

  • rpcd: Robotino's central message dispatcher
  • controld3: Access to Robotino's Motors and IOs.
  • laserd: Support for Hokuyo URG laser rangefinders.
  • restapid: Robotino's web-interface and Robotino's REST-API.

The main reason for running Windows on Robotino is to run Matlab or LabView directly on Robotino. This gives you fast access to the Robotino platform and local access to other devices that are handled directly by Matlab or LabView.

On Windows 10 you have to disable disable Signed Driver Enforcement:

BCDEDIT -Set LoadOptions DDISABLE_INTEGRITY_CHECKS
BCDEDIT -Set TESTSIGNING ON

After installing the daemons package you can reenable it:

BCDEDIT –Set LoadOptions EENABLE_INTEGRITY_CHECKS
BCDEDIT –Set TESTSIGNING OFF

You also have to disable Microsoft BallPoint driver. If not USB devices might be detected as serial mouse:

REG ADD "HKLM\SYSTEM\CurrentControlSet\Services\sermouse" /V Start /T REG_DWORD /F /D 4