Difference between revisions of "Startup Info For Developers"

From LinuxMCE
Jump to: navigation, search
m ('''First Steps in making your own device driver''' (WIP))
('''First Steps in making your own device driver''' (WIP))
Line 38: Line 38:
 
'''To Run the Device:'''
 
'''To Run the Device:'''
  
1- cd /usr/src/lmce/LinuxMCE-0810/src/nameofdevice   
+
      cd /usr/src/lmce/LinuxMCE-0810/src/nameofdevice   
  
2- ./nameofdevice -r dcerouter -d devicenumber
+
    ./nameofdevice -r dcerouter -d devicenumber
  
  
 
'''Compile new changes in c++ code'''
 
'''Compile new changes in c++ code'''
  
1-  export SNR_LDFLAGS=" "
+
      export SNR_LDFLAGS=" "
 
       export SNR_CPPFLAGS="-DKDE-LinuxMCE"
 
       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
+
      make bin
  
  
 
'''Send Commands to Device:'''
 
'''Send Commands to Device:'''
  
1- Log in via WebAdmin
+
    Log in via WebAdmin
  
2- Goto  Advanced->Configuration->Devices
+
    Goto  Advanced->Configuration->Devices
  
3- Select your device on the left panel
+
    Select your device on the left panel
 
+
   
4- Select "Send Command to Device" on the right pane
+
    Select "Send Command to Device" on the right pane
  
  

Revision as of 19:58, 4 May 2010

First Steps in making your own device driver (WIP)

      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
      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/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

      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:

    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