RE: dual ethernet ports
Hello Tim,How are you enabling multiple Ethernet channels? Are you providing separate IP instances for both?Regards
View ArticleRE: tx_mutex_get returns error in threadx synergy
Hello Dhiraj,Mutexes can only be owned by threads. You cannot get a mutex from within hardware interrupt routine (timer interrupt?).Regards
View ArticleRE: tx_mutex_get returns error in threadx synergy
Hi KAROL,Thank you for the help. Is there any alternative way to lock the resources ?Thank you :)
View ArticleRE: Does Ethernet PHy require external interrupt?
Thanks for the info, Karol.If the functionality is the same, Steves question remains.Like him I dind't found any obvious connection between LAN functionality and the IRQ-DS, it seems only enabled as an...
View ArticleRE: dual ethernet ports
Karolyes each one is set up with a different IP address and instance name.
View ArticleRE: tx_mutex_get returns error in threadx synergy
Hello Dhiraj,You can check for event flags or semaphore when accessing the data. What "resources" do you want to lock?Regards
View Articletx_mutex_get returns error in threadx synergy
Hi all,I have created a timer where i call some function. In that function when i try to acquire the mutex using threax apitx_mutex_get(&m_hTimerMtxLockHandle, TX_WAIT_FOREVER);it returns...
View ArticleRE: Gpt Timer as output port
Dear Karol,I want to use timer as blinking LED in different time periods, I am using GTIOC6A _A: P400 . I am using channel "6". but i dont know how to use it as PWM mode and its configuration and duty...
View ArticleRE: Gpt Timer as output port
Dear Karol,I want to use timer as blinking LED in different time periods, I am using GTIOC6A _A: P400 . I am using channel "6". but i dont know how to use it as PWM mode and its configuration and duty...
View ArticleRE: Does Ethernet PHy require external interrupt?
The IRQ line from Ether PHY is not used by current sf_el_nx implementation. It can theoretically be used for wake-on-LAN signals or to communicate with PHY only on interrupt (rather than...
View ArticleRE: Gpt Timer as output port
Hello Wasim,Have a look at the following timer configuration ("Mode" is the key setting):After opening your timer, you can adjust the blink rate using g_timer.p_api->periodSet(g_timer.p_ctrl,...
View ArticleGpt Timer as output port
Hi,How we can use gpt timer as a blinking LED on output port in different speed. I have test but its blinking speed only depend on "Period value" . Can anyone help me out this./* HAL-only entry...
View ArticleRE: USB protocol without ThreadX
USB is easier to implement, troubleshoot and maintain with an RTOS. With a 32 bit MCU and reasonable RAM/ROM there's really no point in not using ThreadX.
View ArticleRE: using netX protocols with a wifi module
Thanks KarolI expected i had to make a driver. Something to do then..Dig
View Articleusing netX protocols with a wifi module
HiIs it possible te use the high- level netX protocols like FTP and HTTP without low-level netX stuff?Should be nice with a wifi module.Dig
View ArticleCrypto APIs crash when called
If you are using crypto APIs and you hit the Default Handler, please continue to read. Some of the crypto APIs e.g. createKey(), encryptFinal(), addAdditionalAuthenticationData() crash when called....
View ArticleRE: tx_byte_release return TX_CALLER_ERROR
Hi KAROL,Thank you so much. It was very helpful.Regards
View Articletx_byte_release return TX_CALLER_ERROR
Hi all,I have created a memory byte pool and allocate the memory using tx_byte_allocate in one function. Then i pass the memory_ptr which is pointer to a destination memory pointer in another function...
View Article