Jump to content
43oh

Rei Vilo

Members
  • Content Count

    2,127
  • Joined

  • Last visited

  • Days Won

    140

Posts posted by Rei Vilo

    • How the ESP8266 is powered?

    Keep in mind the ESP8266 requires up to 400 mA, so it requires to be powered separately, as the MSP430 can supply all the current;

    • Which reference of the MSP430 are you using?

    The MSP430G2553 has 512 bytes only of RAM, which may be too short.

    • Edit the file /Applications/Energia.app/Contents/Java/hardware/energia/msp430/platform.txt
    • Change
    tools.mspdebug.upload.pattern={cmd.path} {upload.verbose} {upload.protocol} --force-reset "prog '{build.path}/{build.project_name}.hex'"

    for 

    tools.mspdebug.program.pattern={cmd.path} {program.verbose} {protocol} --force-reset "prog {build.path}/{build.project_name}.hex"

    Note the switch between single and double quotes.

  1. Same here, upload fails with Energia 1.8.10E23 on macOS. This only impacts the MSP430s with mspdebug as uploader.

    Energia generates

    ~/Library/Energia15/packages/energia/tools/mspdebug/0.24/mspdebug rf2500 --force-reset prog '/var/folders/wn/n7qqb8ss0k3bvpqwfcdwp_7r0000gn/T/arduino_build_280546/Blink.ino.hex’ 

    and it should be

    ~/Library/Energia15/packages/energia/tools/mspdebug/0.24/mspdebug rf2500 --force-reset 'prog /var/folders/wn/n7qqb8ss0k3bvpqwfcdwp_7r0000gn/T/arduino_build_280546/Blink.ino.hex’

    Note the ‘ before prog, not after.

    I opened a ticket at https://github.com/energia/Energia/issues/1053

×
×
  • Create New...