Forum Post: RE: How to configure Digital Output in Renesas RH8580/FIL...
Yes, the iodefine.h header file must in your project if it not present you can make new project and apply necessary io file check buttons. but the important is you can access by struct name then...
View ArticleForum Post: CCRX does not inline C++ functions
As stated in the CC-RX V2.03.00 Manual in section "A.2.2 Performing In-Line Expansion of Functions", inline expansion should be done if the function is declared as inline. However, the following...
View ArticleForum Post: RE: Always builds complete project (Again)
Thanks to both of you for the replies. Neither of these seem to be my issue. All the project names are correct. Also My configuration names are just Debug and Release. I did the update all...
View ArticleForum Post: RE: printf to the console screen in E2studio
Hello Matt, The steps you are following are very much correct, except your header file to include should be #include stdio.h. Also, try not to write your user code inside main() as the main.c file is...
View ArticleForum Post: RX111 PCB package/symbol
Relative newb here- Does anyone have any information that will lead to PCB design files for RX111 (64 pin)? Preferably Eagle. I'm happy to repurpose a 64 pin QFP IC from some other source, but figured...
View ArticleForum Post: RE: Always builds complete project (Again)
Before we realized we needed to shorten our configuration names we could get relief by compiling all (both configurations). Only the files that diverged thereafter (and their dependents) would...
View ArticleForum Post: SK-S7G2 and BLE
Are there any demos or at least some documentation to describe how to communicate and use the BLE on the SK-S7G2 which is U2 R5F11AGJANB.
View ArticleForum Post: RE: Always builds complete project (Again)
Well nothing seems to work. Guess I'll just run make from the command prompt. That works correctly. Thanks for the ideas.
View ArticleForum Post: Porting Hew to E2 problem
Hi, I am trying to migrate from HEW to E2. I am having some problems though. Everything is going ok until this error occurs: C:\Micrium\Software\uCOS-III\Ports\Renesas\RX600\RXC\os_cpu_a.inc(50) :...
View ArticleForum Post: RE: SK-S7G2 out-of-box connectivity issue & Quick Start Guide
Here is the suggested solution for Windows 7. There is a check box that is important to keep checked during install. +++++++ Re-running the ISDE installer, saying ‘modify existing installation’, and...
View ArticleForum Post: M16c/62P INT
I am trying to get the INT pins on a QSK-62P to work - without success. The program jumps to the ISR when an INT occurs, but then the PC goes to oblivion. Then minimum code snippet for INT0 is in...
View ArticleForum Post: Is there any working example of networking on the SK-S7G2?
Is there a sample project or project template that uses networking (even a simple ping responder) that works on the SK-S7G2? I'm still unable to get Ethernet working on the board, and a working...
View ArticleForum Post: GR - Kaede Issues
Hello there, From the beginning, Im facing lot of problems in Renesas GR Kaede board. I'm struggling a lot to complete my project during this exam time. At first, I faced...
View ArticleForum Post: Regarding Project upload
Dear EFY Team, My project is completed and I have also submit it on dtd. 29.10.2015. But after that I have made some changes in software as well as some features. So I want to re-submit it....
View ArticleForum Post: RX63N Development Kit Example - LCD
Hello, How should I go about getting larger fonts on the RX63N evaluation kit LCD? I looked at the GPIO example, and, see a statement about text lines being 8 pixels high and 96 pixels wide. Can this...
View ArticleForum Post: RE: GR-Kaede EEPROM read write issue
Hi, sorry to reply delay. You can avoid this issue by adding interrupts() after EEPROM.write as below. I don't understand the cause. I'm investing now.. #include Arduino.h #include "EEPROM.h" void...
View ArticleForum Post: I2C is not working properly!!
I am using I2C to get data from gyroscope(GY521),the code is working on arduino properly ,but when i run the code on Kaede board its giving only zero value.I2C programming is crucial for my...
View ArticleForum Post: sreg register
what register is in gr-kaede micro-controller like sreg in avr's ? How to use that register for programming ? I want to use that in between interrupt and normal execution.
View ArticleForum Post: RE: I2C is not working properly!!
Could you try Wire1? The Wire on A4/A5 is implemented by software i2c. So if you could, please connect SCL to pin0 and SDA to pin1, and then use Wire1, that uses hardware i2c. You can use from Wire1...
View ArticleForum Post: RE: sreg register
unsigned char sreg = SREG;// for Arduino unsigned char sreg = isNoInterrupts();// for kaede reverse assignment..................... can we do this ? SREG = sreg;//for Arduino isNoInterrupts() =...
View Article