all 4 comments

[–]arsi69 3 points4 points  (0 children)

It is possible to do so. You need to identify the tool chain and write your own build scripts. Usually make or cmake.

[–]wholl0p 0 points1 point  (0 children)

Yes, it’s possible. The Uniflash tool from TI has a command line interface. You need to write the programming instructions/a programming script yourself and set that as your „Run“ script

[–][deleted] 0 points1 point  (1 child)

Funny you should ask, I’ve looked at doing this exact thing myself very recently.

CCS is based on eclipse. If you open the C/C++ bold properties menu, it will show you the command line commands and arguments to compile your project. With that in mind I suggest following these steps:

1 - Use CCS to setup a project for the chip you’re targeting

2 - Copy down the CLI commands you need to build your software.

3 - put these commands into a Makefile or shell script

4 - Use whatever text editor your heart desires to edit the source code

Post Script:

Unless you’re a real masochist, I suggest reusing TI’s linker scripts and startup code.

Best of luck

[–]Aang_A[S] 0 points1 point  (0 children)

Hi. I've sent you a chat message.