Browse Topics
Amplifiers
Audio Amplifiers
High Speed Amplifiers
Precision Amplifiers
/etc... Amplifiers & Other Linear
Applications
Automotive
Medical & High Reliability
Motor Drivers
ARM® Processors
Sitara™ ARM®
Digital Signal Processors (DSP)
C5000 Ultra Low Power DSP
C6000 Multicore DSP
C6000 Single Core DSP
DaVinci™ Video Processors
OMAP™ Processors
Clocks & Timers
Data Converters
Audio Converters
High Speed Data Converters
Precision Data Converters
Video Converters
/etc... Data Converters
Development Tools
WEBENCH® Design Center
Code Composer Studio
TI C/C++ Compiler
DLP & MEMS
Embedded Software
Android
BIOS
Linux
Multimedia Software Codecs
StarterWare
WinCE
Interface
Consumer & Computing
Ethernet
Fiber Communication
High Speed Interface
Industrial Interface
/etc... Interface
Logic
Low Power RF & Wireless Connectivity
Microcontrollers
C2000™ Microcontrollers
Stellaris® ARM® Microcontrollers
MSP430™ Microcontrollers
Tiva™ ARM® Microcontrollers
Other Microcontrollers
Hercules™ Safety Microcontrollers
OMAP™ Applications Processors
Power Management
Battery Management
Digital Power
AC/DC and Isolated DC/DC Power
LED Drivers/LCD Bias
Linear Regulators
NexFET™ Power MOSFETs
Non-Isolated DC/DC
Power Modules
PMU
Power Interface
SIMPLE SWITCHER®
Sequencers
Supervisor and Reset IC
Wireless Power
/etc... Power
RF & Digital Radio
Digital Radio (GC Products)
High Performance RF Modulators, PLL and VCO products
/etc... RF
Other Analog & Touch
Imaging
Temperature Sensors
Touch
/etc... Analog
/etc Support
Custom Title
Support Forums
To post a question or find an answer, choose a topic from the "Browse Topics" navigation menu on the left.
Get this RSS feed
Tags
You have subscribed to this tag. To view or manage your tag subscriptions,
click here
.
Close
You have unsubscribed from this tag. To view or manage your tag subscriptions,
click here
.
Close
You are currently viewing:
DSP/BIOS
"28335"
28335
2833x
28x
28xx flash
3530
5505
5509A
5515
6437
6455
6678
6678l
6678le
6713
6713 dsk
6747
6748
674x
ADC
arm
audio
Beagle Board XM
beagleboard
beagleboard omap3530
Related Posts
Forum Post:
Linking problems with Reuse Startup Code Space option set
L. Kurylo
DSP C6413 "Reuse Startup Code Space" in DSP/BIOS (5.32.03) configuration makes this GROUP appear in generated linker cmd file: GROUP { .sysinitgap {. += 0x8;} .sysinit: .IRAM$heap: { _IRAM_base = IRAM$B; _IRAM_length = IRAM$L; . += 0x2000; } } START(IRAM$B), SIZE(IRAM$L) >...
on
Jun 9, 2008
Forum Post:
Re: Linking problems with Reuse Startup Code Space option set
TimHarron
Hello, It looks like this might be related to a known linker issue of Code Generation Tools version 6.1.x. I suggest trying CGT version 6.0.14 as this version of BIOS was built and validated on that version. From the Release Notes for BIOS 5.32.03: Validation Information This release was built...
on
Jun 18, 2008
Forum Post:
Re: How do I install the Chip Support Library so it shows up with other peripherals in the DSP/BIOS config file?
TimHarron
JohnAtANS Ouch! That's one of the main reasons chose a TI DSP for my latest project. I didn't technically need a DSP, but on past projects the GUI CSL made it really easy to get started and try various what-ifs. Is TI losing their edge, or their will to compete, or anything like that? I sincerely...
on
Jul 29, 2008
Forum Post:
fprintf does not work in CCS simulator !!!
Xuedong
Hi, all, I have a question: anyone knows a way to make fprintf work in CCS simulator? I wrote a short C program to read 3 lines of integer data (in input.txt) into an array of size 3, and then write them from the array to a file (output.txt). I use fscanf to read and fprintf to write respectively...
on
Aug 1, 2008
Forum Post:
Re: The problem with the display of file DSP_BIOS.tcf
TimHarron
Hi ciyoha, ciyoha Hi all, I have a small but annoying problem. When I open the DSP_BIOS.tcf file in CCStudio v3.3, it was called as a text file. But I want to make it open with the help of Configuration Tool. What are the setting for this should be in CCStudio v3.3? You should be able to right click...
on
Aug 12, 2008
Forum Post:
Re: Need DSP BIOS patch for NORPTB for older Code Composer version 1.2 tools
Harry2162
Hi Brad, I am looking into your question and trying to find the patch. Are you able to upgrade to a newer version of BIOS? This problem was fixed way back in 2001. Regards, Harry
on
Aug 12, 2008
Forum Post:
Re: The problem with the display of file DSP_BIOS.tcf
Brad Griffis
FYI, we've intentionally decoupled the IDE from the other components such as the code generation tools and DSP/BIOS to enable you to upgrade the IDE without affecting the actual code. You should be able to update to the latest version of CCS and install the exact same code generation tools, DSP/BIOS...
on
Aug 17, 2008
Forum Post:
Re: a question of CCS Tutorial
Brad Griffis
Here's the high level overview of traditional program flow (non BIOS-based): Device Reset -> c_int00 -> main (stay in "forever loop", never return) Here's the high level overview of BIOS flow Device Reset -> c_int00 -> BIOS_init -> main -> BIOS_start (it handles the...
on
Aug 21, 2008
Forum Post:
Re: Output of 64-bit variable
Brad Griffis
The BIOS documentation doesn't show support for "long long" with LOG_printf. As a workaround you could output two variables. Perhaps something like this would work: LOG_printf(&output, "%x %x", var>>32, var); Let us know if that works.
on
Sep 9, 2008
Forum Post:
Re: Problems on the DDK uart
Brad Griffis
You need to remove the cdb file from your project and add the tcf file instead.
on
Sep 9, 2008
Forum Post:
Re: Problems on the DDK uart
TimHarron
Matthew, Are the files actually being created in the same folder as the .tcf file? Is the folder marked as "Read-Only" by chance?" The reason Brad mentioned removing the .cdb file is that your build log shows the .cdb file instead of the .tcf file. The .s62 and _c.c files are both generated...
on
Sep 9, 2008
Forum Post:
Re: Output of 64-bit variable
Brad Griffis
LOG_printf does indeed allow you to pass variables at run-time. It does so using RTA/RTDX so that you don't need to halt. You're right that CCS grabs the string from the out file, but it will format and insert the data values that were passed from the target.
on
Sep 9, 2008
Forum Post:
Re: FXN_F_selfLoop() crash
Davor
Thank you, both. We are "pretty" confident that it is not a power or clocking issue in our case. We tried removing parts of the code to try to pinpoint what causes it to crash. The problem with this approach (in our case) is that the crash can occur anywhere from immediately to days after...
on
Sep 10, 2008
Forum Post:
Re: Creating a HW interrupt with DSP/BIOS
Pradeep Shinde
The TMS320 DSP/BIOS User's Guide (SPRU423F) is a good starting point. Check the link below; http://focus.ti.com/lit/ug/spru423f/spru423f.pdf Pradeep Shinde
on
Oct 2, 2008
Forum Post:
Re: DSP\Bios example
Lori Heustess
This application note may help - it has examples for DSP/BIOS that run from both SARAM as well as flash: Running an Application from Internal Flash Memory on the TMS320F28xx DSP http://focus.ti.com/general/docs/techdocsabstract.tsp?abstractName=spra958h
on
Oct 3, 2008
Forum Post:
Re: Code For Real time FFT
TimHarron
MSK Hi to all.... Am shankar.....Am working with DS6713....Past 2 to 3 weeks i tried to write a program for real time fft,but unfortunately i couldn't got anything.....Am following DSP and application with DSK6713&6416 by Rulph Chassaing....Will anybody give me the code for real time FFT.......
on
Oct 3, 2008
Forum Post:
C6424 compared to DM6437. Similar enough to run DSP/BIOS Link on C6424?
KrzysztofCh
I've recently received C6424 EVM and it's very similar to DM6437 (EVM and chip). Since DSP will be part of system with ARM I wanted to try DSP/BIOS Link for interprocessor communication. In the DSP/BIOS Link user guide it is mentioned that Linux PC <-> DM6437 is supported so I was wondering...
on
Oct 17, 2008
Forum Post:
Re: trying start FVID commands for DM6437
TimHarron
I believe the correct symbol name should be "_ECM_dispatchTab" - can you confirm the symbol name you posted? This error generally occurs when the ECM is disabled inside DSP/BIOS. If using the graphical editor go to Scheduling->HWI->ECM, right click Properties and select "Enable event...
on
Oct 17, 2008
Forum Post:
Re: Exception handling in a multitasking application
mlimber
Thanks for the quick reply! Indeed, I did do that. In this test program, there is only one source file, though there are some files (a .c and a .s62 file) generated by the DSP/BIOS. To handle the .c file, I had to specify the -fg option to compile C files as C++, but that doesn't address the assembly...
on
Oct 17, 2008
Forum Post:
Re: Exception handling in a multitasking application
mlimber
An update: It appears to me that the exception handling code is not properly destroying exception objects. (This may be a symptom of a deeper problem, but it may just as well be the problem itself.) Here's what I did. I lock a global mutex in my exception class's constructors and unlock it...
on
Oct 20, 2008
Forum Post:
Re: Exception handling in a multitasking application
mlimber
Georgem Unfortunately, you have wandered into unsupported territory. C++ exception handling uses a data structure, not exposed to the user, to do its job. There is only one copy of this data structure in the system. The different tasks are all modifying this one data structure. Changes made by one task...
on
Oct 22, 2008
Forum Post:
Re: Where to Obtain Latest Tool Releases?
HyperGalaxy
Thanks, Bernie. However, the issue with using the DVEVM update site is that it does not seem to have all of the needed tools, at least that seemed to be my impression when I was trying to get everything installed (perhaps that is not the case, though). There do seem to be compatibility issues with using...
on
Oct 22, 2008
Forum Post:
Re: Exception handling in a multitasking application
mlimber
Georgem Well, mlimber, you write some long posts. You ain't seen nothing yet! ;-) WRT "official answer" ... Of course not. It is just a forum post hoping to be helpful. The official answer will arrive in a readme file, or the documentation, or something like that. The way I think about...
on
Oct 23, 2008
Forum Post:
Re: Exception handling in a multitasking application
mlimber
Georgem I have since learned more of the low level details of how exception handling works in the TI compiler. There is persistent state about exceptions that each task presumes is only modified by that task. Putting a mutex around each point where that state is updated is not sufficient. That merely...
on
Oct 27, 2008
Forum Post:
DSP/BIOS Configuration Guide
Ali Imtiaz
Hi I am having trouble understanding the MEM module in the DSP/BIOS configuration tools the base for my c5515 ezDSP comes up as 0x000060 in the configuration tool, whearas the the CMD file generated by the .tcf shows the origin at 0xc0 if I modify the base address using hte configuration tools...
on
Jun 28, 2012
1
2
3
4
5
»