Jump to content

Startup Info For Developers: Difference between revisions

From LinuxMCE
Langstonius (talk | contribs)
 
(15 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category: Tutorials]]
[[Category: Tutorials]]
== '''First Steps in making your own device driver''' (WIP) ==
[[Category: Programmer's Guide]]
{{versioninfo|810Status=relevant|810UpdatedDate=8 oct 2010|810UpdatedBy=golgoj4}}
== '''First Steps in making your own device driver''' ==




1- sudo apt-get install pluto-dcegen
      sudo apt-get install pluto-dcegen pluto-sql2cpp build-essential subversion libmysqlclient15-dev
      sudo apt-get install pluto-sql2cpp
      sudo apt-get install build-essential
      sudo apt-get install subversion
      sudo apt-get install libmysqlclient15-dev


2- cd /usr/src
      cd /usr/src
       sudo mkdir lmce
       sudo mkdir lmce
       sudo chown "youruser" lmce
       sudo chown "youruser" lmce
       cd lmce
       cd lmce


3- svn co http://svn.linuxmce.org/svn/branches/LinuxMCE-0810/
      svn co http://svn.linuxmce.org/svn/branches/LinuxMCE-0810/


4- cp /usr/pluto/lib/* /usr/src/lmce/LinuxMCE-0810/src/lib
      cp /usr/pluto/lib/* /usr/src/lmce/LinuxMCE-0810/src/lib


5- export SNR_LDFLAGS=" "
These two lines are no longer needed as the source tree has been pre-prepped.
      export SNR_LDFLAGS=" "
       SNR_CPPFLAGS="-DKDE-LinuxMCE"
       SNR_CPPFLAGS="-DKDE-LinuxMCE"


Create the template via WebAdmin (add new device?)


6- Create the template via WebAdmin (add new device?)
Sqlcvs update to DCE via WebAdmin


7-  Sqlcvs update to DCE via WebAdmin
        cd to /usr/src/lmce/LinuxMCE-0810/src/DCEGen  
 
8-  cd to /usr/src/lmce/LinuxMCE-0810/src/DCEGen  
         and run DCEGen -d templatenumber
         and run DCEGen -d templatenumber


9-  run usr/src/lmce/LinuxMCE-0810/src/sql2cpp
        run usr/src/lmce/LinuxMCE-0810/src/nameofdevice/sql2cpp
 
10-  cd /usr/src/lmce/LinuxMCE-0810/src/nameofdevice
 
11-  chmod +x post_make.sh and make bin
 
12- cp /src/nameofdevice /usr/pluto/bin


13- Add device via WebAdmin (advanced>configuration>devices)
        cd /usr/src/lmce/LinuxMCE-0810/src/nameofdevice


      chmod +x post_make.sh and make bin


      cp /src/nameofdevice /usr/pluto/bin


'''To Run the Device:'''
Add device via WebAdmin (advanced>configuration>devices)


1- cd /usr/src/lmce/LinuxMCE-0810/src/nameofdevice 
== To Run the Device: ==


2- ./nameofdevice -r dcerouter -d devicenumber
      cd /usr/src/lmce/LinuxMCE-0810/src/nameofdevice  


    ./nameofdevice -r dcerouter -d devicenumber


'''Compile new changes in c++ code'''


1-  export SNR_LDFLAGS=" "
== Compile new changes in c++ code ==
      export SNR_CPPFLAGS="-DKDE-LinuxMCE"
Profile lines no longer needed
    export SNR_LDFLAGS=" "
    export SNR_CPPFLAGS="-DKDE-LinuxMCE"
     (or insert the variables in the .profile file)
     (or insert the variables in the .profile file)


2- cd /usr/src/lmce/LinuxMCE-0810/src/nameofdevice   
      cd /usr/src/lmce/LinuxMCE-0810/src/nameofdevice   
 
3- make bin
 
 
'''Send Commands to Device:'''
 
1- Log in via WebAdmin


2- Goto  Advanced->Configuration->Devices
      make bin


3- Select your device on the left panel
== Send Commands to Device: ==


4- Select "Send Command to Device" on the right pane
# Log in via WebAdmin
# Goto  Advanced->Configuration->Devices
# Select your device on the left panel
# Select "Send Command to Device" on the right pane








Thanks to TSCHAKeee2
Big Thanks to TSCHAKeee2

Latest revision as of 20:04, 8 October 2010

Version Status Date Updated Updated By
710 Unknown N/A N/A
810 relevant 8 oct 2010 golgoj4
1004 Unknown N/A N/A
1204 Unknown N/A N/A
1404 Unknown N/A N/A
Usage Information

First Steps in making your own device driver

      sudo apt-get install pluto-dcegen pluto-sql2cpp build-essential subversion libmysqlclient15-dev
      cd /usr/src
      sudo mkdir lmce
      sudo chown "youruser" lmce
      cd lmce
      svn co http://svn.linuxmce.org/svn/branches/LinuxMCE-0810/
      cp /usr/pluto/lib/* /usr/src/lmce/LinuxMCE-0810/src/lib

These two lines are no longer needed as the source tree has been pre-prepped.

      export SNR_LDFLAGS=" "
      SNR_CPPFLAGS="-DKDE-LinuxMCE"

Create the template via WebAdmin (add new device?)

Sqlcvs update to DCE via WebAdmin

       cd to /usr/src/lmce/LinuxMCE-0810/src/DCEGen 
       and run DCEGen -d templatenumber
       run usr/src/lmce/LinuxMCE-0810/src/nameofdevice/sql2cpp
       cd /usr/src/lmce/LinuxMCE-0810/src/nameofdevice
      chmod +x post_make.sh and make bin
      cp /src/nameofdevice /usr/pluto/bin

Add device via WebAdmin (advanced>configuration>devices)

To Run the Device:

     cd /usr/src/lmce/LinuxMCE-0810/src/nameofdevice   
    ./nameofdevice -r dcerouter -d devicenumber


Compile new changes in c++ code

Profile lines no longer needed

    export SNR_LDFLAGS=" "
    export SNR_CPPFLAGS="-DKDE-LinuxMCE"
    (or insert the variables in the .profile file)
     cd /usr/src/lmce/LinuxMCE-0810/src/nameofdevice   
     make bin

Send Commands to Device:

  1. Log in via WebAdmin
  2. Goto Advanced->Configuration->Devices
  3. Select your device on the left panel
  4. Select "Send Command to Device" on the right pane



Big Thanks to TSCHAKeee2