AbhraneelBera / wiringBone

Wiring/Arduino style library for BeagleBone Black Platform
25 stars 14 forks source link

Integration with Cloud9 IDE #3

Open jadonk opened 9 years ago

jadonk commented 9 years ago

For the Userspace-Arduino library, we did a tiny integration with Cloud9 IDE. It would be interesting for you to try a similar integration:

https://github.com/beagleboard/bone101/blob/master/.c9/runners/sketch.run

AbhraneelBera commented 9 years ago

I will be more than happy to integrate the wiringBone library with cloud9 IDE. You might already know that wiringBone has a auto clean-up feature which works only when the program is stopped using ctrl+c (by generating SIGINT interrupt). I'm not sure about how a program is terminated in the cloud9 IDE when the stop button is clicked. If some other method is used to kill the process then the auto clean-up may not take place.

jadonk commented 9 years ago

I'm not sure what signal is used to terminate the process, but it is likely either SIGINT or SIGTERM.

AbhraneelBera commented 9 years ago

Thanks for the info. I will do the integration and let you know.