Ok, then I will say that sounds like a fail, it should allow you to execute it. I've given it one more shot, If this fails I'll lay out the experiment I was performing, maybe someone with more knowledge than I have about the internal workings of Lc can explain the failure. Here is the re-saved vers...
Interesting, I never needed sudo to start a standalone. Did you install the IDE "for all users" or "for you only"? I just defined the permissions for all users... strangely only worked with "sudo chmod" :lol: , but still everything works exactly the same way. Its a mystery that one day (when I'm a ...
Hm. Save as standalone in ARMv6-HF This particular file shouldn't have to be saved as anything, it should be an executable on Pi? All you should have to do is save it to your say, desktop from within the OS of the Pi, then open the folder and click on it. Or I don't understand what is happening at ...
I don't think you did anything wrong at all, the first attempt I expected to fail. If you don't mind trying again, I've changed what I expected to cause it to fail and put up a new version . Thank you again for the attempt(s). It didn't work again... :( What I now do to run is: Save as standalone i...
Bah, this was a fast one... I remembered that I would need something to run it... sudo... so, the command sudo ./APPNAME just run the god damn Hello World test. I'll try it now with my app and with the app from the other topic https://forums.livecode.com/viewtopic.php?f=76&t=31961 Thank you very muc...
On which Raspi type are you and which OS are you running on it? Are you doing any OS access from your stack in the IDE? I have no problems here with RaspiA /Raspi 2B+ /Raspi 3, running Debian or Lubuntu. Please try to compile with a simple "Hello World" button and field only, so that we can isolate...
I will try in a second. ;) EDIT: Ok, here is my result... pi@raspberrypi:~/Desktop/helloTest $ sudo chmod +x Rasberry_Hello pi@raspberrypi:~/Desktop/helloTest $ ./Rasberry_Hello Startup error - unrecognized section encountered My equipment: Pi 2 Model B v1.1 Raspbian GNU/Linux 9 (stretch) - I may ha...
You assume it right! It runs nicely, its quite a simple program to read data from an Arduino, but it would nice if it would work as a standalone so if I have people around and I'm giving some class or workshop they don't change the code
Hello everyone!
I have a question...
I got a raspberry pi to learn about it and to run my apps made with livecode. So... This may be a dumb question but I cannot figure out how to run the apps.
I try to run and nothing happens. I try ./myApp and I get:
Exec format error
Hello! I'm sure there must be a simpler way to code the operations I'm trying to do but I didn't discovered it... So, if someone could help or give me ideias would be wonderful. My intention would be to do something like this: put (field "time1" - field "time2")/2 into tTime1 put (field "time2" - fi...
Just a follow up... I solved my issue like this: repeat with x=1 to the number of fields in group "grp0" if field x of group "grp0" is not "" then put field x of group "grp0" into tArrayPT[x] end if end repeat With this I can do means and stdev of the array correctly :) Thank you for your help guys.