I am a newbie in this subject and want to learn how to embed codes into MSP430. I have a breakout board MSP430-H5438 and I am not using JTAG interface. I have the IAR generated codes (hex files) ready (ADC, SPI interfaces), however I could not load them into the IC. I am using a USB-UART bridge to connect device to PC, BSL scripter for software, but there is no result. Is it a wrong way to connect MSP430 to PC without JTAG interface? Am I running in circles here? Thanks in advance.
embedding code into MSP430 without JTAG
1k Views Asked by Hayri Akyurtlu At
1
There are 1 best solutions below
Related Questions in USB
- How to disable battery charging during ADB connection?
- USB to Serial, Port Name Changing Unexpectedly
- USB programming, transfer file from iOS device to Embedded os device?
- USB Full Speed polling interval
- Is it possible to limit data traffic in kernel USB drivers?
- communicationg to device using cdc usb protocol in c# windows application
- Shell file that finds a flash drive on my Raspberry Pi and executes a given program
- USB on board switching tools on Android 4.2.2
- Garmin USB driver grmnusb not compatible with chrome USB API on Windows
- STM32 USB HID reports
- Arduino Serial Monitor shows strange ASCII characters
- execute application mac os yosemite 10.10.3 when plugged in usb
- ISO/IEC 7816 commands over CCID
- How to start process on Linux OS in C, C++
- Install Android app on device through wifi - no usb or emulator
Related Questions in EMBED
- YouTube views not counting on Wordpress embed
- Youtube embed display at one time start at beginning
- Embedding a Google Chrome App into a web page for us in another browser
- What is the most efficient way to embed multiple Instagram photos?
- Can I embed my Picasa video to play on my website?
- Embedded Google Document Viewer (PDF): How to scroll horizontal
- Display fillable PDF in webpage with submit button that emails completed form
- C# Embed QEMU Into panel - how to get/generate QEMU window handle?
- How to custom embed Soundcloud track?
- Trouble preloading CKEditor with Database Content
- Embed LateX file to HTML
- styles css in embeded souncloud player
- How to embed a Wordpress blog into a website?
- Imdb iframe code not working
- How to open an embedded SWF file in mobile browser?
Related Questions in MSP430
- "RET" in MSP430 taking me to the wrong place?
- UART receive string
- UART for MSP430FR5969
- Real time data plotting using MSP430 on python
- Interfacing an MSP430g2553 with a 16x4 LCD screen
- IAR Pre-Build batch file python call not working
- Is there any way of doing multiprecision arithmetic(with integers that are greater than 64-bit) in msp430?
- How to do a toolchain configuration for wxwidgets/c++ project?
- How can I stop my IAR ide from hanging when changing build configurations
- Error: "undefined reference to ‘__udivsmodsi4" when switching compilers in Contiki 2.6
- If statement in C not evaluating properly?
- How to play a tone on the MSP430 using Assembly language
- Positioning a label in Java Swing
- msp430 uart and timer interrupts
- TI CC2530 - Convert a float to uint8[] for sending and then convert back to float in reception
Related Questions in UART
- Connecting a USB serial device to the Arduino directly
- STM32F4 Handling peripheral error while making a DMA Transfer (RX)
- Retrieve data from via UART
- UART RX Interrurpt fired too early
- Send data from PC to Raspberry
- Altera UART IP Core
- UART for MSP430FR5969
- Issue sending c char* over USART
- Real time data plotting using MSP430 on python
- why picocom gets irrecognizable code
- How to disable default Raspberry Pi 2 model B UART driver/module?
- Uart / GPS driver sample buffer overflow
- UWP UART send/recieve bytes incorrectly
- I got a big trouble with BeagleboneBlack Uart
- C++ unsigned char array length
Related Questions in JTAG
- How to address multiple definition compiler error
- JTAG: How do I know the width of the Instruction Register?
- Direct Memory Access with JTAG in Trust Zone
- What is the difference between JTAG and EJTAG
- Programming an obsolete micro controller
- JTAG Daisy chain debugging using eclipse
- Disabling JTAG PINS on STM32f103RCT6
- There is a different googletagmanager in the site code
- How does JTAG influence overall system performance and its downsides
- Nanoframework on ESP32 debug using JTAG
- Atmel studio does not work tool window for release or debug mode selection
- Unable to JTAG MEGA2560 R3
- Display HLL C when debugging Linux kernel source with TRACE32
- Not able to program STM32 MCU using JTAG interface
- Online JTAG / RGH Source Code Compile Time Errors
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
BSL should work but you need to connect not only the TX and RX but also you need to have DTR connected to RST and RTS to TEST. If your USB-UART interface only has TX and RX (which is often the case) then it will not work with BSL.
Note that the MCU on that board supports not only the regular (and expensive) JTAG but also the newer SBW interface. This means you can get the $4.30 Launcphad and program your board using the programmer that is included on the Launchpad. This will let you do anything you can do over the regular JTAG and is highly recommended over BSL since it will give you hardware debugging functionality. And the Launchpad can be useful on its own too.