RE: nx_ip_create problem - pointing to driver
Is it possible I am still linking in the library? Is that why I am getting duplicate definitions?.Thanks so much for your help .....Steve D
View ArticleRE: nx_ip_create problem - pointing to driver
Un-checked nx box on components tab, confirmed nx_src box was checked..generated content.confirmed in project properties that the nx library was removed from linker library list..Did project clean and...
View ArticleRE: nx_ip_create problem - pointing to driver
Of course I found out that that un-checking nx box in components tab removed my second port ....Put it back now and still have same errors.Steve D
View ArticleRE: How to use "User Data" property in GUIX Studio?
Hi Ralph,That code snippet just sets up the bus controller to use the CS RD/WR ADDR & Data lines to talk to the controller.You will still need to initialize the external LCD controller and also...
View ArticleHow to use "User Data" property in GUIX Studio?
Hello,in the GUIX Studio exists an "User Data" property for each widget. Unfortunately I can't found any hint in the help and/or manua,l how to use this property (name of char pointer?),Has anyone more...
View ArticleRE: nx_ip_create problem - pointing to driver
Seems like Synergy is compiling these 28 source files twice !!! The errors indicate the same line in each file and the same file name so it would appear that the compiler is compiling this twice.Any...
View ArticleRE: nx_ip_create problem - pointing to driver
OK ......I excluded the 28 files causing errors (duplicate definition errors) from the build ....Now nx source compiles without errors ....Behold now my software works like it always did .....Must be...
View ArticleRE: nx_ip_create problem - pointing to driver
Making files read only can cause issues with the configuator, if it can't write to a file it can cause strange issues (such as you have been seeing), because the generation of files can stop when...
View ArticleRE: Exposing FileX instance over multiple interfaces?
Hello Rich,As far as I'm aware, you're not mounting FileX instance in the USB mass storage device. MSD is controlled by the host system which is whatever you're connecting the Synergy board to (i.e....
View ArticleRE: eMMC on PE-HMI1
Hello Laser,If you're appending data at the end of the file, you can just open it, use fx_file_relative_seek to place IO pointer at the end of the file and write data to that file using fx_file_write....
View ArticleeMMC on PE-HMI1
Hi,we purchased a PE-HMI1 demoboard and we are developing a project that uses a lot of graphics. For this reason we need to store data (graphics and code) into the onboard eMMC. Is there any example...
View ArticleRE: nx_ip_create problem - pointing to driver
Hello Steve,As detailed in release notes for SSP 1.1.0, you should define NX_DISABLE_INCLUDE_SOURCE_CODE in the compiler pre-processor if you'd like to build NetX from source. Additionally, NetX Source...
View Articlenx_ip_create problem - pointing to driver
I had good working code with SSP1.1.0 for network functions. I have migrated to 1.1.3 and now I get problems with nx_ip_create:Original code that worked in SSP 1.1.0:void nx_ether_driver_eth0 (struct...
View ArticleRE: Unexpected UART_EVENT_RX_CHAR and UART_EVENT_ERR_OVERFLOW
Hello Stephen,If you're not handling the incoming data with g_uart1.p_api->read, then eventually you'll run out of the software buffer. By default, incoming data is transferred into driver-level...
View ArticleRE: nx_ip_create problem - pointing to driver
That was fixed in SSP 1.1.1 it is defined in synergy_cfg/framewor/el/nx_src_user.h
View ArticleRE: nx_ip_create problem - pointing to driver
Looks like there is a problem when migrating the version of a component, the XML used to generated the CFG files doesn't seem to get changed as well, this will need to be investigated. Best add the...
View ArticleRE: Unexpected UART_EVENT_RX_CHAR and UART_EVENT_ERR_OVERFLOW
Hi Karol,Thanks a lot for your help. Where and how should I use g_uart1.p_api->read? Inside the callback? Can I check how many bytes in the driver-level buffer and pop them out all at once?
View ArticleRE: Making own ISR in S7G2
Here is an example on how to write a user defined ISR.The example enables the GPT0 Capture Compare A InterruptI've used a similar process for additional ADC interrupts, so I think what is written...
View ArticleRE: Making own ISR in S7G2
Sorry, will have to try again with the images included!Otherwise my reply doesn't make sense!BR, Richard
View ArticleRE: Making own ISR in S7G2
Here is an example on how to write a user defined ISR.The example enables the GPT0 Capture Compare A InterruptI've used a similar process for additional ADC interrupts, so I think what is written below...
View Article