Skip to main content
stm239955_st
Associate
October 9, 2011
Question

Atollic TrueSTUDIO Lite: Is this a misprint?

  • October 9, 2011
  • 13 replies
  • 2589 views
Posted on October 09, 2011 at 18:32

Hello everybody,

Potential new user of ST chips here, feeling somewhat silly for asking this. However: Is the information provided by Atollic in their feature comparison document, v2.2, accurate? I am in particular referring to the number of code breakpoints supported, stated as being One (yes, 0x01). Surely this must be a mistake?

My reason for asking is that some time ago I started development on an educational/hobbyist application, which - if successful - will eventually be released to the world as open source code. Originally I had started on the PIC32MX platform, yet some kind soul suggested I changed that decision in time, lest I get locked into the products from a single manufacturer. Additionally I was informed that the other manufacturers were also keen on getting hobbyists to use their evaluation boards, once they saw the success of projects like Arduino (made possible in part due to AVR Studio).

However right now I am worried someone has been pulling my leg, and that I may just be making embarrassing noises/wasting your collective time. As far as I can tell, nobody makes a freely available tool chain for any of their Cortex M3 or M4 MCUs, which allow full development of code. All the toolchains have more or less ridiculous restrictions applied, never mind the advanced code management features of the professional packages. I mean, *one* breakpoint?!

Somebody please tell me I am wrong.

Kind regards from Denmark.

Frank.

#cheapskate #crippleware
    This topic has been closed for replies.

    13 replies

    rmteo
    Associate
    October 10, 2011
    Posted on October 10, 2011 at 18:22

    How big do you think the hobby market is?  In terms of dollars, my guess is that it is probably less than 0.001% of the total market for MCUs.

    hernandez_nava_itt
    Visitor II
    January 3, 2012
    Posted on January 03, 2012 at 02:07

    please

    software

    is limited

     

    atollic 

    truestudio lite?

    library

    can

    use

    flash

    to store

    data in

    a

    microcontroller.

    ?

    data

    can be transmitted

    by the

    USART

    port

    ?

    xacc
    Associate II
    January 10, 2012
    Posted on January 10, 2012 at 11:48

    No, you are correct partially :)  The IDE only allows 1 breakpoint at a time. You do however have access to the GDB console, so you can add as many breakpoints as you like.

    Example:

    b main.c:42

    This will add a breakpoint on line 42 of main.c.