SeuPay 17 Posted July 20, 2012 Share Posted July 20, 2012 Hello all, Yesterday discover Energia, in minutes my LaunchPad was Blinking! Hope the Servo and Stepper Libraries will be available soon. For reference edited the schematic: sebathorus, energia, RobG and 1 other 4 Quote Link to post Share on other sites
RobG 1,892 Posted July 20, 2012 Share Posted July 20, 2012 Add RXD and TXD jumper, many new users forget it's there. Add crystal and R28, R29, C21, C22 (crystal and caps grayed out.) Also, C24 and R34 is not populated on LP v1.5 SeuPay 1 Quote Link to post Share on other sites
3828274838 1 Posted July 20, 2012 Share Posted July 20, 2012 12345 SeuPay 1 Quote Link to post Share on other sites
energia 485 Posted July 20, 2012 Share Posted July 20, 2012 Also see: https://github.com/energia/Energia/wiki/Hardware SeuPay 1 Quote Link to post Share on other sites
SeuPay 17 Posted July 20, 2012 Author Share Posted July 20, 2012 Thanks all. I'll be using your corrections and doing some experiments to release a more precise and helpfull shematic for Energia users. Quote Link to post Share on other sites
SeuPay 17 Posted August 24, 2012 Author Share Posted August 24, 2012 OK, I'm back from vacations. Please comment this schematic guide to use Energia with the LaunchPad v.1.5 an the MSP430G2553. Some corrections made (Sun Aug 26, 2012): -S1, LED1 and LED2 are not valid pin names. -Red and Green Leds connections corrected. -TEMPSENSOR internal pin name added. -Revision added in the low right corner.( Rev 0.8 ) Rei Vilo, pine, Rickta59 and 4 others 7 Quote Link to post Share on other sites
Rei Vilo 695 Posted August 25, 2012 Share Posted August 25, 2012 Very nice :!: Is there a way to integrate that schematics into Energia, as Wiring does? Is it possible to add SPI and I2C pins? The same schematics for the msp430g2452 would be nice! Quote Link to post Share on other sites
Philipp 56 Posted August 26, 2012 Share Posted August 26, 2012 It should be easy to integrate the schematic into Energia, but propably not the way you meant. When you create a sketch xyz.pde in Wiring, you can add a xyz.png image file to the sketch folder and Wiring will open this image if you click on the schematic button. I think this would totally work with Energia, but it is not very useful for hardware reference or pinouts, because there has to be an individual schematic for every single sketch. However I'm the same opinion as you, a pinout reference or a schematic within the IDE would be very handy. Wiring does this aswell, and it does it in a very neat looking way: Short time after i did the current Energia theme Robert asked me if I would like to redesign the Reference aswell to fit Energia and the TI MCUs. I think I'll start with a mockup of a hardware reference page, combining the best of the Arduino and Wiring universes and including photos aswell as schematics like SeuPey's one for Launchpad and Olimexino as soon as it is officially supported. I'll keep you tuned Rei Vilo 1 Quote Link to post Share on other sites
Hekebit 4 Posted August 26, 2012 Share Posted August 26, 2012 Another Quick Reference. Regards SeuPay and rohit 2 Quote Link to post Share on other sites
Rei Vilo 695 Posted August 26, 2012 Share Posted August 26, 2012 Something like this? Please refer to the Energia wiki at :arrow: http://github.com/energia/Energia/wiki/Hardware xv4y, SeuPay, Philipp and 1 other 4 Quote Link to post Share on other sites
RobG 1,892 Posted August 26, 2012 Share Posted August 26, 2012 Don't forget SPI CLK pins Quote Link to post Share on other sites
Rei Vilo 695 Posted August 26, 2012 Share Posted August 26, 2012 ...and the corresponding Excel file for editing. I haven't found the pins for the SPI clock. LaunchPad MSP430G2553.xls.zip Philipp 1 Quote Link to post Share on other sites
Rickta59 589 Posted August 26, 2012 Share Posted August 26, 2012 I haven't found the pins for the SPI clock. #if defined(__MSP430_HAS_USCI__) static const uint8_t SS = 8; /* P2.0 */ static const uint8_t SCK = 7; /* P1.5 */ static const uint8_t MOSI = 15; /* P1.7 */ static const uint8_t MISO = 14; /* P1.6 */ #endif #if defined(__MSP430_HAS_USI__) static const uint8_t SS = 8; /* P2.0 */ static const uint8_t SCK = 7; /* P1.5 */ static const uint8_t MOSI = 14; /* P1.6 */ static const uint8_t MISO = 15; /* P1.7 */ #endif Quote Link to post Share on other sites
SeuPay 17 Posted August 26, 2012 Author Share Posted August 26, 2012 . Quote Link to post Share on other sites
SeuPay 17 Posted August 26, 2012 Author Share Posted August 26, 2012 . Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.