Forum Post: RE: fetching size of sections (text, data section) without...
No Mike, am fetching section size (example : text) by writing _linkerTextSectionSize = (SIZEOF (.text)); (in gsi) uint32_t textSectionSize = (uint32_t) &linkerTextSectionSize; (in function call)...
View ArticleForum Post: RE: fetching size of sections (text, data section) without...
No Mike, am fetching section size (example : text) by writing _linkerTextSectionSize = (SIZEOF (.text)); (in gsi) uint32_t textSectionSize = (uint32_t) &linkerTextSectionSize; (in function call)...
View ArticleForum Post: RE: IRQ0 pin
I don't know about problems with IRQ0. Have you selected the correct pin? For most packages there are 2 possible inputs of IRQ0. Do you see the interrupt request? Do all access to IRQ0 control...
View ArticleForum Post: RE: Evaluation Board for RL 78 K \ F13 or F14 series
I'm sorry but I don't have direct contacts in Continental Singapore.
View ArticleForum Post: RE: IRQ0 pin
1- Yes I have selected the correct pin : // Specify that the IRQ0 as an input pin PORTB.PDR.BIT.B5 = 0X0; /* Select the pin function for the lower 5 bits, PB5 Hi-Z */ MPC.PB5PFS.BIT.PSEL = 0x00; //...
View ArticleForum Post: RE: S7G2 GPT Hardware Count Start/Count Stop and Clear Operation
Hello, This functionality is not yet implemented in the configurator so indeed you'll need to use register access to enable desired functionality. First, make sure that the P100 is set to Peripheral...
View ArticleForum Post: RE: SD card using S7 DK/SK
Do you have these interrupts enabled? • SDHIMMC0 ACCS • SDHIMMC0 DMA REQ
View ArticleForum Post: RE: Evaluation Board for RL 78 K \ F13 or F14 series
No problem Frank, thanks for your lead anyways.. I can get in touch with some people who may have contact at Conti Singapore.
View ArticleForum Post: RE: S7G2 GPT Hardware Count Start/Count Stop and Clear Operation
Karol, I had applied the setting that you have suggested, but the end result was unsuccessful. The only way I can see to put P100 into Peripheral mode, using Synergy Configurator, is by enabling GPT0...
View ArticleForum Post: Viewing ThreadX source when using IAR
Dear Forum, Is there a way to see threadx source code and be able to step through it when using the IAR tool chain? I have a license file from October of 2015, however it says Source=no, View=yes for...
View ArticleForum Post: NetX nx_dhcp_src and TraceX conflict
I needed to add NetX BSD support to my project. To accomplish this, I needed to add nx_src and nx_dhcp_src. I followed the examples in this thread: http://renesasrulz.com/synergy/f/206/t/6593.aspx...
View ArticleForum Post: RE: S7G2 GPT Hardware Count Start/Count Stop and Clear Operation
All options are shown with the asterisk because the pin P100 has already been set to be used for something else. Clicking and arrow to the right of the box will help you go to the source setting and...
View ArticleForum Post: RE: Viewing ThreadX source when using IAR
To view NetX source, you'll need to request new license. You cannot use "replace encrypted files with decrypted" option unless you have a clear source license. Regards
View ArticleForum Post: RE: Viewing ThreadX source when using IAR
Hi Karol, Ok, Great Thank you. Matt
View ArticleForum Post: RE: tx_queue_receive corrupts stack
RTFM. I did not use the configurator. In the call to tx_queue_create i had set the size in bytes instead of 4-bytes words. The strange thing is that i used some other queue's with the same mistake...
View ArticleForum Post: RL78/G13 vector table reallacation ( Like INTB )
Hi, I use RL78/G13 family mcu. I want to reallocate vector table to RAM. I use also M16C/28 mcu and in M16C/28 there is a register for this (INTB - Interrupt Table Register) . But for RL78/G13 I...
View ArticleForum Post: RE: RL78/G13 vector table reallacation ( Like INTB )
Hello, the RL78 doesn't support moving the vector table to RAM by hardware. Alternatively you can fill the HW vector table with branch instructions to a virtual vector table, which has to be...
View ArticleForum Post: RE: RESET status register
The WTCSR.IOVF bit inside the watchdog will not be initialized by POR, so with this you can distinguish between a POR and a WD reset. Also, the WDTOVF hardware signal can be output on a WD overflow...
View Article