sudo apt-get install bonescript-beta  fails, unable to locate package on 
fresh 2016-03-27 lxqt SD card install.

I'd like to give it a try along with node-red (which seems installed and 
running by default on boot with this image, which is IMHO nice).

Actually, I just started the cloud9 IDE and the blinkled.js example seems 
to be running without any error messages, so it looks like just the bone101 
page is not working in this newest testing image which is my usual 
"pretending to be a newbie" starting point.

I think the current package name might be: bb-bonescript-installer-beta 
looking at my listing of installed packages.

I will play around with it some, try to install the node-red Bonescript 
nodes, and start a new thread if I discover problems.



On Wednesday, March 30, 2016 at 6:31:45 AM UTC-5, Jason Kridner wrote:
>
> For the 4.1 kernel, you need the beta version of BoneScript to use the 
> pinmux helpers it understands. I believe the package is:
>
> apt-get install bonescript-beta 
>
> On Mar 30, 2016, at 5:05 AM, dorica <dorel...@gmail.com <javascript:>> 
> wrote:
>
> Hi.
> I have a BBB rev C, with Debian 8.3, kernel 4.1.15-ti-rt-r40. I am logged 
> in as a regular user (not root). I loaded BB-UART1 overlay, to activate 
> UART1 (tried to load cape-universal first, then apply BB-UART1, but could 
> not do it both, so I have settled to BB-UART1). I have installed minicom, 
> and uart works just fine (tested with link to a PC, via FTDI cable).
> I wrote a script to check the UART, using Cloud9 editor on BBB. the Code 
> follows:
> //****************************
> var uart1var = require("bonescript");
> var port = '/dev/ttyO1';
> var options = {
>
>     baudrate: 9600
>
> };
> uart1var.serialOpen(port, options, onSerial);
> uart1var.serialWrite(port,'TEST');
> function onSerial(x) {
>
>     if (x.err) {
>
>         console.log('***ERROR*** ' + JSON.stringify(x));
>
>     }
>
>     if (x.event == 'open') {
>
>        console.log('***OPENED***');
>
>     }
>
>     if (x.event == 'data') {
>
>         console.log(String(x.data));
>
>     }
> }
> //***********************************
>
> When I run the script I get <***ERROR*** {"err":"Kernel does not include 
> CapeMgr module"}>, and I don/t know why. Any ideas where to look and what 
> to do?
> Do I need to run a "npm install -g serialport"? I understand that 
> bonescript uses the same library, and is already installed.
> If there is need for more info regarding the configuration of BBB, just 
> say and will be done.
>
> PS. The BBB will be a remote machine, so all configuration must be loaded 
> at boot or run by scripts at boot by a regular user (not root). The script 
> containing the code for UART will also be running automatically, and serve 
> a web page, using socket.io (the socket.io part seems to work fine).
>
> -- 
> For more options, visit http://beagleboard.org/discuss
> --- 
> You received this message because you are subscribed to the Google Groups 
> "BeagleBoard" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to beagleboard...@googlegroups.com <javascript:>.
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
For more options, visit http://beagleboard.org/discuss
--- 
You received this message because you are subscribed to the Google Groups 
"BeagleBoard" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to beagleboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to