Skip to main content
Visitor II
May 11, 2007
Question

Free ST7 programmer

  • May 11, 2007
  • 42 replies
  • 8094 views
Posted on May 11, 2007 at 15:48

Free ST7 programmer

    This topic has been closed for replies.

    42 replies

    Visitor II
    June 29, 2003
    Posted on June 30, 2003 at 01:54

    Dear sir,

    Could you tell me if I can delete some part when I just want to program ST7F MCU? because it is difficult for me to get some part.

    Best Regards,

    mcu interest
    sjoAuthor
    Visitor II
    July 8, 2003
    Posted on July 08, 2003 at 08:21

    Could you be a bit more specific ?

    Regards

    SJO
    Visitor II
    July 23, 2003
    Posted on July 23, 2003 at 06:36

    Hi SJO,

    Do you have plans to support ST5 ?

    sjoAuthor
    Visitor II
    July 23, 2003
    Posted on July 23, 2003 at 08:03

    I have started adding ST5 support to Flashbash, and as soon as I receive some flash samples I will complete the support.

    The hardware requires no changes - just a firmware update.

    Regards

    SJO
    Visitor II
    September 5, 2003
    Posted on September 05, 2003 at 07:12

    Now I am making a prototype programmer with you provide the PCB and schematic. One point I want to confirm: because I don't have ST232A on hand, I just have ST232, but in your schematic you use ST232A, so could you tell me if I can use ST232 to replace ST232A?

    as I know, the speed of ST232A is higher than ST232.

    Looking forward your response! Thank your support.

    sjoAuthor
    Visitor II
    September 5, 2003
    Posted on September 05, 2003 at 08:24

    You can use any of the ST232 range, the only reason I use the A is for lower power consumption.

    Regards

    sjo
    sjoAuthor
    Visitor II
    November 18, 2003
    Posted on November 18, 2003 at 05:33

    I have just updated Flashbash - device support added for ST72FLITE10,15,19 and ST72FMC. SUPERLITE range changed to ST7FLITES2/ST7FLITES5.

    Reset delay feature added for differant reset circuits.

    Flashbash can now be used with the st72f264 aswell as the 254. Firmware upgrade via the serial port is available with the 264.

    Modified schematics using the 264 sci have also been added.

    Regards

    sjo
    Visitor II
    December 16, 2003
    Posted on December 16, 2003 at 10:52

    Dear sjo

    Can FLASHBASH be used for manufactory programming just like segger flash programming tools?

    you know segger also use serial port for programming. Have you compared the programming speed

    of FLASHBASH with ST7xxx-EPB programming tools?
    Visitor II
    January 7, 2004
    Posted on January 07, 2004 at 02:26

    dear sjo,

    I have problem about ICP: as you know there is no need of isolation

    about ICCDATA and ICCCLK pin if these two pin is configured as output(decribed in the data sheet). But if I solder a blank chip on the board and begin to program with ICP and there are two LED connected with these two pin(include two 680ohm series resister. But I found I can not program the chip with ICP mode by using ST7-STICK. what is the problem? can I use FLASHBASH to program?

    best regards,

    mcuinterest
    Visitor II
    January 7, 2004
    Posted on January 07, 2004 at 06:04

    How con I implement a branch table in inline assembly with Metrowerks C compiler? Following code doesn't work :

    asm{

    ...

    LD X,Nerx

    SLL X ; X <- Nerx * 2

    LD A,(TB_GRAF_RX+1,X)

    PUSH A ; MSB of return @

    LD A,(TB_GRAF_RX,X)

    PUSH A ; LSB of return @

    RET

    ; Branch to subroutine (TB_GRAF_RX + 2*Nerx)

    TB_GRAF_RX:

    DC graf_rx_0, graf_rx_1, graf_rx_2 ,graf_rx_3

    DC graf_rx_4, graf_rx_5, graf_rx_6 ,graf_rx_7

    graf_rx_0:

    ...

    graf_rx_1:

    ...

    and so on...

    VD