Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
756 views

How do I convert a floating point C code to fixed point?

I have a C code which uses doubles. I want to be able to run the code on a DSP (TMS320). But the DSP doesn't support doubles, only fixed-point numbers. What is the best way to convert the code into ...
6
votes
1answer
170 views

Is it possible to cross-compile D source code for MIPS?

Is it possible to cross-compile D source code for MIPS? For example, I want to compile a D "Hello, world." program that will run on TI AR7-based devices, which have MIPS32 processor and typically run ...
6
votes
1answer
322 views

How do I compile a Code Composer project which was created using a different version of Code Generation tools?

I have a Code Composer project I received from a friend. When I try to build it I get the following error message: This project was created using a version of Code Generation tools that is not ...
5
votes
7answers
2k views

TI DSP programming - is C fast enough or do I need an assembler?

I am going to write some image processing programs for Texas Instruments DaVinci platform. There are tools appropriate for programming in the C language, but I wonder if it is really possible to take ...
4
votes
2answers
402 views

Z80 (TI-83+) stops working on CALL

Every time I assemble an application for the TI-83+ calculator (Z80 processor), it stops running at CALL. Here is an example ("Hello") — it starts running just fine, but the calculator freezes at the ...
3
votes
1answer
143 views

Minimalistic approach for a Snake-style game

I received my TI-82 STATS programmable calculator (which is in fact more of a TI-83) about two days ago - and wanted to program a Snake game with the builtin TI-BASIC language. Although I had to find ...
3
votes
2answers
161 views

A consistent and simple group of IDE and tools for embedded code and unit test in C++?

I’m starting a new firmware project in C++ for Texas Instrument C283xx and C6xxx targets. The unit tests will not run on the target, but will be compiled with gcc/gcov on a PC with windows (and run as ...
2
votes
1answer
52 views

TI83+ evaluate expression program

I would like to build a program in a TI83+ that will prompt for the variables x y and z, and then prompt for an expression on the terms x y and z. Is it possible to prompt for that expression and then ...
2
votes
2answers
142 views

effective functional sort

I'm programming a function for a TI-NSpire, so I can't use the builtins from inside a function. What is the most generally efficient algorithm for sorting a list of numbers without modifying the list ...
2
votes
3answers
2k views

TI MSP430 Interrupt source

I know that when working with the MSP430F2619 and TI's CCSv4, I can get more than one interrupt to use the same interrupt handler with code that looks something like this: #pragma ...
2
votes
2answers
216 views

Where can I find information about programming the TI TMS320C64xx DMA controller

I need to do some simple memory transfer using this DSP, but I am unable to find any documentation about the DMA functions. I am using C with code composer 3.3
1
vote
1answer
126 views

Error while trying to call a class method: attempt to index local 'self' (a nil value) - Lua

I'm creating a lua script that should run on the TI-Nspire calculator. The problem is that while running my script I get the error Attempt to index local 'self' (a nil value) when the ...
1
vote
1answer
45 views

how to use the arrow keys in a custom ti program

I have looked at as many functions as I can and I still can't find one that lets you intercept the click of a TI arrow key click. Any ideas would be great.
1
vote
2answers
198 views

Controlling MSP430 with computer (USB?)

I'm looking to control a bunch of LEDs from my computer, with a TI MSP430 or similar. My computer is a Macbook Air, and so it looks like the only port I can communicate with is USB. The MSP430 has a ...
1
vote
1answer
46 views

davinci OSD issues

I am working on a project using TI 365 DSP. There is an annoying issue of OSD transparency working in YUV422 mode. YUV422 is a packed format and the OSD transparency implementation knocks out only Y ...
1
vote
1answer
958 views

Generating C code from a Matlab-Simulink model for DSP C6748

I'm trying to generate C code from a Matlab-Simulink simple model (eg.: sine wave generator with a DAC at the output). This code must be executed with Code Composer Studio for TMS320C6748 DSP (Texas ...
1
vote
2answers
194 views

RNDIS gadget cannot start

I build video cameras with a Linux kernel on a TI Davinci dm365 board. This board supports RNDIS drivers so my camera can be "plug and play" in windows. This is some kind of "Ethernet over USB" ...
1
vote
1answer
234 views

Code Composer 4 (Eclipse based)- makefiles

How do I prevent Code Composer 4 (which is based on Eclipse) from generating its own makefile and use the one I provide instead? Background: I am starting a FreeRTOS project on a MSP430F5436 using ...
0
votes
0answers
22 views

Prevent TI BASIC expression expansion

I'm coding a function for my TI-Nspire CAS calculator. I have two parts of an expression: (x+2)^2 and +3 Joining these two parts results in the expression being undesirably expanded: x^2 + 4x ...
0
votes
0answers
69 views

texas instrument ez430 chronos wireless protocol code

I am working with texas instrument ez430 chronos. This device comes with an RF USB emulator to obtain acceleration measurement and data from the ez 430 chronos. The acceleration measured is then being ...
0
votes
0answers
237 views

Generating C code from a Matlab-Simulink: errors encountered during linking

I generated C code from a Matlab-Simulink model (In Matlab help is "Parametric Audio Equalizer" -> "Task 6 - Integrate Device Drivers" -> "Configuration C") with a "Target Preferences" module for ...
0
votes
1answer
64 views

How do I detect if an installation of Code-Composer-Studio is licensed?

The licensed version of the CCSv4 can be used to create programs with more then 16kByte code. When I have a PC with Eclipse/CCS installed, how do I detect, if the current version is licensed without ...
0
votes
0answers
132 views

channel hopping in TI cc2530

i want to change the channel in ti cc2530. i need a code for how can i choose the channel from 11 to 26
0
votes
0answers
32 views

lost of frames in my DVSDK application

I am now modifying the code example provided withe DVSDK by Texas Instruments, and I want to do event recording into 2 file formats, m4v and AVI. when i record the m4v file type everything is working ...
0
votes
1answer
274 views

How to create an array in TI-89 Titanium calculator?

I tried many different ways, but TI always gives me errors: Invalid in a function or current experession I tried {0, 0, 0, 0}->A and [0, 0, 0, 0]->A Both ways did not work. Any idea? ...
0
votes
1answer
31 views

Ti83+ prompt for variables specified by user

Is it possible to prompt in a program for variables that the user specifies. Something like this: variables?A,B,C,D prompt A? prompt B? prompt C? prompt D? Ted.