Forum Post: RE: Does Ethernet PHy require external interrupt?
IRQn-DS pins are capable of waking up the device from Deep Software Standby. For any given n, IRQn and IRQn-DS cannot be used simultaneously. All other functionality is the the same between the two....
View ArticleForum Post: RE: Gpt Timer as output port
Hello Wasim, You need to be more specific in what you mean by "speed" (do you want a higher frequency or shorter wait period between pulses). 90% of the functionality you require is implemented on the...
View ArticleForum Post: RE: dual ethernet ports
Hello Tim, How are you enabling multiple Ethernet channels? Are you providing separate IP instances for both? Regards
View ArticleForum Post: RE: RL78/D1A CS+ E1 Writing to the on-chip debug reserved area is...
OK, problem solved. So I have to clean the project after copying the newly generated code following renesasrulz.com/.../48.aspx I guess because the filename are the same so the compiler just skip them.
View ArticleForum Post: tx_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 api tx_mutex_get(&m_hTimerMtxLockHandle, TX_WAIT_FOREVER); it returns...
View ArticleForum Post: RE: 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 ArticleForum Post: RE: 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 ArticleForum Post: RE: 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...
View ArticleForum Post: RE: dual ethernet ports
Karol yes each one is set up with a different IP address and instance name.
View ArticleForum Post: RE: Programming RX630 flash via USB boot mode
No, I haven't resolved this yet.
View ArticleForum Post: RE: 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 ArticleForum Post: RE: 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...
View ArticleForum Post: RE: 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...
View ArticleForum Post: RE: 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 ArticleForum Post: RE: 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 ArticleForum Post: RE: 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 ArticleForum Post: RE: BlockErase with PFDL
Hi Mike, it seems to be possible to set the linker sections within: Project Settings - C/C++ Build - Settings - Tool Settings - Linker - Sections but that's wrong! The only working way was to use the...
View ArticleForum Post: RE: code samples for gnu as RL78/G12
My recommendation: - Don't use assembler but write C code. - Use CS+ or e2 studio with evaluation version of CC-RL (code size limited to 64KB). - Use Applilet 3 or Peripheral Code Generator to...
View Article