Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I'm new to T32 script, and would like to test few scripts from the example of the user guide.
However, I don't have a target to hook up with, so I'm wondering if there are something like a simulator which I can try my scripts without connecting to a real device.
Just want to practice the language first.
Thanks!
TRACE32 can run as instruction set simulator by setting the operation mode in the configuration file that you have to provide on start-up. A minimal configuration file for starting the simulator looks like this:
PBI=SIM
PRINTER=WINDOWS
SCREEN=
HEADER=TRACE32 ARM SIMULATOR
Using PBI=SIM makes sure that TRACE32 operates as instruction set simulator. You can specify configuration files on the command line with <t32_executable> -c <config_file>
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I want to build a system, in which I want to use both Python and C. Python will be used for GUI on wxPython module and C will be used to handle backend processes. I have some pre-built C functions which will be rearranged and sent to a C compiler as files by the GUI. After compilation is done, the resulting file will be given as an argument to another executable and run the executable.
I've tried to run some exe from inside Python. Now I'm looking for an IDE which supports working with both the languages simultaneously i.e. coding and debugging.
You could try using Eclipse. You can install Python and C/C++ on it.
There are many IDE where you can debug C and Python codes simultaneously. You can choose any form the list bellow
Eclipse
Visualstudio
Netbeans
Zeus Ide
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I want to compile C/C++ programs that are supposed to run on MS-DOS, can I do this without actually installing DOS?
If I can not, can I use a virtual machine as a work-around? (I tried this before asking but I can't see if they will work on an actual DOS on a physical machine)
Yes -- there are compiler toolchains like DJGPP and OpenWatcom which can build DOS executables on a Windows (or even Linux!) system.
Alternatively, if you already have a DOS toolchain that you want to use, you can certainly run that under an emulator like DOSBox.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am developing a custom Op for TensorFlow, using Ubuntu on virtual machine and either rmate to edit the code in local Atom installation on my Mac, or Emacs to edit it right on the virtual machine.
Is there a way to enable code completion suggestions for C code in TensorFlow?
There's no special support in TensorFlow for code completion, but there may be a specific solution for your editor. For example, this answer on SuperUser covers different approaches to C/C++ code completion in Emacs.
One way I've managed to get C++ auto-completion is to use the (experimental) TensorFlow CMake build to generate Visual Studio project files for the project, and then use Visual Studio to edit the code.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Good day, I just want to ask some help about connecting to a device using TCP/IP and how to properly read() and write() command to it.
Any sample codes or references would be a very big help. I don't have any idea in this particular matter but I have some knowledge in C programming and serial ports.
By the way, I'm currently using ubuntu. Thanks
I do not know what you mean by device (any device located in /dev?), but here is a tutorial on c sockets using write and read:
https://vcansimplify.wordpress.com/2013/03/14/c-socket-tutorial-echo-server/
If you would like to gain access to a device in /dev then you just need to open it like a file and also treat it like a file (read / write from it like you would from a file).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I want to create a console "shell" for an embedded device.
anyone knows about an open-source implementation of such a thing in c ?
I need basic line parsing to commands & arguments.
Something similar to uboot - console shell will be great.
You may find usefull piece of codes in this shell a friend of mine is writting.
His aim is to learn issues regarding the shell coding, so this project should keep small and easily readable.
There is/was the book "Linux application development"
It implements a Shell as example. I found this quite convincing.