i'm working with renesas MCU RX65N, i want to make a serial connection with other board and also display an HMI i designed on Appwizard, i followed the steps they offer on their manuals but won't work either. Then found more information about how to solve it, and the code works by itself, but when i try to merge both programs just keeps giving me errors (problems that doesn't appear on individual projects), this is the error i got now, and don't know what to do because apparently it is included for my project but won't open no matter what i try, anyone knows how to solve it or what to do?
F0520005:Could not open source file "r_bsp_config.h"
755 Views Asked by Alejandro Peñafiel At
1
There are 1 best solutions below
Related Questions in C
- Passing arguments to main in C using Eclipse
- kernel module does not print packet info
- error C2016 (C requires that a struct or union has at least one member) and structs typedefs
- Drawing with ncurses, sockets and fork
- How to catch delay-import dll errors (missing dll or symbol) in MinGW(-w64)?
- Configured TTL for A record(s) backing CNAME records
- Allocating memory for pointers inside structures in functions
- Finding articulation point of undirected graph by DFS
- C first fgets() is being skipped while the second runs
- C std library don't appear to be linked in object file
- gcc static library compilation
- How to do a case-insensitive string comparison?
- C programming: Create and write 2D array of files as function
- How to read a file then store to array and then print?
- Function timeouts in C and thread
Related Questions in MCU
- Would IIC SCL signals trigger MCU to enter debug mode when the IIC SCL pin and the STLINK SWCLK pin are connected to the same GF pin?
- How can I use STM32 sleep mode with UART
- Detecting SCL/SDA ports
- ESP32 Microcontroller ADC conversion problems
- Average values in c, without exceeding value data type?
- Union in bit field for mcu register mapping in C++
- C++ Virtual destructors ROM usage
- Configurations variables removed by compiler
- STM32H743ZI Nucleo seems unable to transmit via FDCAN 2?
- download file from BAIDU
- How to understand the return value of uxtaskgetstackhighlwatermark()
- MCUxpresso imr rt - Position Independent Code result in mem fault on free rtos task activation
- Why this MX_RTC_Init() function in STM32F4 make program stuck?
- Can Python do Factory Method design pattern?
- Difference between events and interruptions
Related Questions in RENESAS-RX
- Replacing Huge Pointer in C
- Multiple LED control with few GPIO pins in Renesas microcontroller
- __GETSR() function is not compiling in GHS compiler
- Interfacing SD card (R7FS7G27H2A01CBD + e2 studio) - Read/Write issue
- F0520005:Could not open source file "r_bsp_config.h"
- External memory Data Copy through SPI -- Speed
- Renesas GCC linker error with shared code
- Looking for IDE for PD78F0485 MCU (Renesas)
- unhandled level 2 translation fault in h3ulcb running poky 2.1.3 while running cross-compiled cpp binary
- ROS support on Yocto 3.9.0
- R-Car M3 MMC init fail
- Configuration of ADC Renesas RX62N
- Configuring ethernet comunication on Renesas R7FA6M3AH3CHP
- memory addresses are not showing up in eclipse (e2studio) source debug view
- Git push New in Renesas E2 Studio
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
It sounds like when you include the file in one project, it works, but when you include it in another project, it doesn't? It sounds like there is a configuration difference between your projects. Try creating a new file in a project, then just put
#include "r_bsp_config.h"in it, or however you wrote it (it may need to be#include <r_bsp_config.h>). See if you get the same error (you will probably get an error, something about missingmain(), but the question is whether you get the same error). If you don't, cut and paste the code from the problematic project in, and also make sure the project configuration is adjusted to match, and see if it works now. If you do get the same error, then see if you can copy the project configuration from the working project to the new project, and see if you get the error this time.