Quantcast
Channel: Embedded Software (Read Only)
Viewing all 25965 articles
Browse latest View live

Forum Post: RE: RTOS: CC2650 SensorTag | SensorTagApp appBLE.cfg The system cannot find the file specified.

$
0
0
I don't think you need to reinstall everything. It seems that the path to XDCtools is now correct, but you've got a new error now. There is a directory 'src/ sysbios ' in your project, which I would like to see. Can you also post your CFG script?

Forum Post: RE: RTOS/TMS320DM642: How can I migrate an old CCS3.3 project about network on TMS320DM642 to CCS5.5

$
0
0
Can you post the complete content of your build console when building the project? What happened when you tried to install NDK? What's the error?

Forum Post: RE: Linux: UBIFS :: ubimkvol size issue

$
0
0
Hello Ravikiran, Thanks for helping. Regards, Ashwin Rase

Forum Post: RE: RTOS/TM4C1294NCPDT: I have designed one data logger board using tm4c1294NCDPT(custom design board i have all protocols like UART ,SSI,CAN,ETHERNET,USB). I want to build TI-RTOS on that ,what is the process for that from begging to ending please guide

$
0
0
Hi Vincent, Hello Word program and UART Console Program working fine ...when coming to Uart logging and LAN examples program compiling successfully but while loading I am getting error(I didn't made any changes in code). Best regards, rajesh

Forum Post: RE: RTOS/LAUNCHXL-CC1350: Current measurement on cc1350 Board

$
0
0
Thanks for the reply sir. This information will help me alot.

Forum Post: RE: RTOS/CC3200-LAUNCHXL: Unable to connect to wifi

$
0
0
Hai, thanks for reply Derrick, no i have not used osi_start(); before sl_Start(); API please check my main function. //***************************************************************************** // MAIN FUNCTION //***************************************************************************** void main() { long lRetVal; Semaphore_Params sem_params; Error_Block eb; lRetVal = -1; memset (&sem_params, 0, sizeof (sem_params)); memset (&eb, 0, sizeof (eb)); // // Board Initialization // BoardInit(); // // Pin Initialization // PinMuxConfig(); // // Configure the UART // #ifndef NOTERM InitTerm(); #endif //NOTERM InitializeAppVariables(); Semaphore_Params_init(&sem_params); sem_params.mode = Semaphore_Mode_BINARY; SEM_rx= Semaphore_create(0, &sem_params, &eb); // // Configure all 3 LEDs // GPIO_IF_LedConfigure(LED1|LED2|LED3); // switch off all LEDs GPIO_IF_LedOff(MCU_ALL_LED_IND); UART_PRINT("Board config done\n\r"); OSAL_QueueInit(); lRetVal = ConnectToAP (); if (lRetVal < 0) { UART_PRINT ("Connect To AP Error Occured \n\r"); } UART_PRINT ("RTC INIT \n\r"); RTCIF_Init(); // Start the SimpleLink Host // lRetVal = VStartSimpleLinkSpawnTask(SPAWN_TASK_PRIORITY); if(lRetVal < 0) { ERR_PRINT(lRetVal); LOOP_FOREVER(); } // // Start the task lRetVal = osi_TaskCreate(ReadandPostData, \ (const signed char*)"ReadandPostData", \ OSI_STACK_SIZE, NULL, 1, NULL ); lRetVal = osi_TaskCreate(ReceivePacketandWrite, \ (const signed char*)"ReceivePacketandWrite,", \ OSI_STACK_SIZE, NULL, 1, NULL ); // Start the task scheduler osi_start(); }

Forum Post: RE: Linux/AM5728: avidemux internal data stream error

$
0
0
Hello, So if my understanding is right when you set video-sink and audio-sink it is not working, correct? If yes, please check this guide: gstreamer.freedesktop.org/.../custom-playbin-sinks.html It is regarding how you could set custom sinks. It is for audio but for video is the same. BR Margarita

Forum Post: RE: Linux: No device /dev/drm in running Linux kernel on AM437x Starter Kit

$
0
0
I download the latest source code and build it to generate one new dual_camera executable. But it exited with error "Could not fine type property" while started running.

Forum Post: RE: Linux/CC1310: CC1310

$
0
0
Dear sir, As per user suggestion we downloaded the cc13xxware at github.com/.../cc13xxware but we are getting the same problem.please reply. Regrads, Rajesh.M

Forum Post: Linux: lspci shows nothings!

$
0
0
Tool/software: Linux Hi. I most recently use from am5728-evm board and i'm trying to setup PCI module on this board also i'm trying to setup and initialize MCS9922 driver MCS9922 => PCIe to dual serial controller => http://asix.com.tw/products.php?op=pItemdetail&PItemID=122;74;110&PLine=74 I should mention that when i connect MCS9922 (picture of this module is attached) on my PC and I enter "lspci" command in terminal i saw MCS9922 and lspci shows that one thing connect to my PC. now i want to connect MCS9922 on mu evm board and use its ability. when i connect MCS9922 on my evm board and when enter lspci command => lspci shows nothing apart from one thing: root@am57xx-evm:~# lspci 00:00.0 PCI bridge: Texas Instruments Device 8888 (rev 01) root@am57xx-evm:~# also i initialize driver of MCS9922 on my evm board and make its module on my evm board. In other words my problem is that when i conncet any PCIe module on my board, my board did not recognize this mudule.... i do not know how can solve this problem please help me. by the way i attached config (tisdk_am57xx-evm-rt_defconfig) file of my evm board that it is in this location => arch/arm/configs (Please visit the site to view this file)

Forum Post: RE: Linux/CC1310: CC1310

$
0
0
If you use nullrdc instead of ContikiMAC on your cc26xx-web-demo, do you still see this issue?

Forum Post: RE: SYS/BIOS 6.45.01.29 ti.sysbios.family.arm.exc.Exception reports incorrect SP and LR values, leading to incorrect exception call stack

$
0
0
Thanks for verifying the fix. Best, Ashish

Forum Post: RE: RTOS/CC2650: SPI_Transfer stuck.

$
0
0
The task is never finished because it just hangs there in the SPI_Transfer command and never continues.. So it never goes to the Idle Task..

Forum Post: RE: How to use TIWI5 on embedded linux based on DM8168?

Forum Post: RE: RTOS/TM4C123BH6ZRB: I2C driver crashes if non-existing I2C device is addressed

$
0
0
Hi Ashish, have you tried the attached project on a TI Launchpad for Tiva ( EK-TM4C123GXL )? Can you see the driver crash? Best regards, Jürgen

Forum Post: RE: RTOS/CC2650: SPI_Transfer stuck.

$
0
0
By the way.. When I pause for debug while the program is stuck and watches the RTOS this is what I get: It has something to do with the semaphore. does anybody knows why the semaphore puts out such messages??

Forum Post: RE: RTOS: TCP Packet loss in TI-RTOS NDK

$
0
0
Hello, Thank you for the update. Here is my tx code: //start = Timestamp_get32(); // // Send the Packet to the Client. If the Client is removed break will close the task and // close the socket // if(send(socket,txPacket,SM_TCP_PACKET_SIZE_RAMREADER,0) != SM_TCP_PACKET_SIZE_RAMREADER){ NOP(); // Break the Loop break; } I am going to make a super simple example to demonstrate the situation. It takes me some days to make it due to the unlimited tasks that I have to accomplish. :)

Forum Post: Linux/OMAP-L138: Standalone McASP driver

$
0
0
Part Number: OMAP-L138 Tool/software: Linux Hi, We want to use the McASP interface with ADC for analog signal sampling. We are using mainline linux kernel v4.10. I have found the McASP bus driver as a part of Sound Subsystem, and the driver implementation is tightly coupled with the sound subsystem. Is there a standalone McASP driver which we could use? Is it possible to use the sound subsystem purely to record data from McASP interface into a kernel buffer? Any recommendation is appreciated. Thank you for help

Forum Post: RE: Linux/OMAP-L138: Standalone McASP driver

$
0
0
Hi Robert, [quote] Is there a standalone McASP driver which we could use? [/quote] The closest to a standalone driver is the MCASP audio example project in OMAP-L138 RTOS, located in: pdk_OMAPL138_1_01_00_02/packages/ti/drv/exampleProjects/MCASP_AudioExampleProject Have a look at its sources. Best Regards, Yordan

Forum Post: Starterware/TMDSLCDK6748: c6748lcdk

$
0
0
Part Number: TMDSLCDK6748 Tool/software: Starterware Hi all, I am trying with starterWare(v 1_10_04_01) examples with omapl138(6748lcdk) i am trying with usb_host_mouse but when i connect the mouse(usb type) to USB host (J5) it is not even detecting i am getting fair display on VGA screen but mouse is not working can any one help me over hear
Viewing all 25965 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>