dylek 4 Posted January 30, 2015 Share Posted January 30, 2015 Hi All ! I am new in this forum so firstly I would like to say Hello About half year a go I was looking for MSP430 Bootloader for value line like MSP340G2553, unfortunately I was not able to find anything. Now when I entered this forum I see that there ware some works around this topic. Nevertheless I would like to share with you my MSP430 Bootloader which I was able to do from scratch using TI datasheets. It is not fully tested yet, but with simple "Hello world " program it works. Detailed description and svn repository you can find on my WIKI here: https://daniel.duchna.pl/index.php/Msp430_bootloader Please feel free to test it and any comments are welcome. You can post here or add comments on my WIKI (after registration) vin43, frosting, RobG and 1 other 4 Quote Link to post Share on other sites
frosting 3 Posted January 31, 2015 Share Posted January 31, 2015 Hi Daniel, Thanks for doing this and for all the documentation you did in your wiki. In your memory diagram you show 512 byte Information memory, but it is from addresses 0x01000 to 0x010FF, only 256 bytes. It has been a while since I looked at information memory in the '2553 but I remember it being 4 * 64 bytes. Best regards, Bob Quote Link to post Share on other sites
Rickta59 589 Posted January 31, 2015 Share Posted January 31, 2015 How do you download this? It failed when I tried: $ svn --username anonymous --password svn_read co https://svn.duchna.pl/msp430_bootloader -rick Quote Link to post Share on other sites
Fred 453 Posted January 31, 2015 Share Posted January 31, 2015 You'll need a Subversion (SVN) client to download. If you're more used to Git then "svn co" is equivalent to "git clone" Quote Link to post Share on other sites
RobG 1,892 Posted February 1, 2015 Share Posted February 1, 2015 BTW, not all, but some G2 series chips (2x53, 2x44, and 2x55) do have BSL. See slau319. Quote Link to post Share on other sites
Rickta59 589 Posted February 1, 2015 Share Posted February 1, 2015 You'll need a Subversion (SVN) client to download. If you're more used to Git then "svn co" is equivalent to "git clone"tbYes I have Svn installed. Svn works fine. It is the userid and password that seem to be the issue. I tried without one and then got prompted. I used the one from the page and when that didn't work I posed my original question. So what is the correct userid and password? Quote Link to post Share on other sites
Rickta59 589 Posted February 2, 2015 Share Posted February 2, 2015 he updated the wiki page with the login info Quote Link to post Share on other sites
dylek 4 Posted February 2, 2015 Author Share Posted February 2, 2015 Hi Daniel, Thanks for doing this and for all the documentation you did in your wiki. In your memory diagram you show 512 byte Information memory, but it is from addresses 0x01000 to 0x010FF, only 256 bytes. It has been a while since I looked at information memory in the '2553 but I remember it being 4 * 64 bytes. Best regards, Bob Yes you are totally right, my mistake. In text I have written correctly but in image was error. Now it is fixed. How you you download this? It failed when I tried: $ svn --username anonymous --password svn_read co https://svn.duchna.pl/msp430_bootloader -rick Hi rick. The issue is that you are using user name: 'anonymous', but the user name is same as password: 'svn_read'. Therefore the correct command to download it is: $ svn --username svn_read --password svn_read co https://svn.duchna.pl/msp430_bootloader BTW, not all, but some G2 series chips (2x53, 2x44, and 2x55) do have BSL. See slau319. This is right, but my Idea was to be totally independent on any build in functions or features UPDATE: I have fixed 3 bugs I found myself. The new updated version 1.1 is available and now should be fully working and easy to use. 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.