Forum Post: RE: S7G2 NetX PHY address
Under NetX there is packet pool instance framework. In case creating you own packet pool then have to make sure its 1568 bytes as per above mentioned.
View ArticleForum Post: RE: GUIX without ThreadX
Hello Sivamurugan, It's technically possible to use GUIX in another environment - you'll need to build GUIX from Source and disable ThreadX binding. You'll also need to provide timer and queue services...
View ArticleForum Post: RE: S7G2 NetX PHY address
Hello TLHQ, If you're using deprecated stacks, then the packet size you've shown is set correctly. I recommend building a simple application using non-deprecated modules and testing ping with various...
View ArticleForum Post: RE: S7G2 NetX PHY address
I use the demo from "For_SSP_Distribution_1.2.0-b.1_Application_Projects_Pack_3" => "Package-NetX Webserver with Duo support with SSP 1.2-b1" It runs well on SK-S7G2 but my custom board has this...
View ArticleForum Post: RE: Application Example: Multiple I2C Masters using Frameworks
Hi MK, I2C and SPI are two different serial protocols. Unfortunately you cannot use SPI driver for communication with I2C peripherals. You may use different SCI channel e.g. SCI4 (pins P511 and P512)...
View ArticleForum Post: RE: Perplexing UART constant SSP_ERR_OVERFLOW issue
More results ... and more bad news .... Per my post about the S3 carrying threadX. I think that is not my problem Per Karols information I went back to this post and changed the blinky thread to...
View ArticleForum Post: RE: r_flash_hp driver causes R_BSP_SoftwareDelay() to delay too long
Hello Jimy, R_ layer (i.e. below RTOS, usually HAL) cannot invoke ThreadX (i.e. framework) calls because it has no dependency on ThreadX API. You can create a macro to do this for you: #ifdef...
View ArticleForum Post: RE: Lost the Breakpoints tab in e2/Eclipse debug perspective
Hello tclong, You can right click the "Debug" button in the top right-hand corner to open the perspective, then right-click it and select "Reset". Regards
View ArticleForum Post: RE: Perplexing UART constant SSP_ERR_OVERFLOW issue
Karol clearly knows his stuff. That said, my limited experience is without DTC my own project's uart under the com framework does not work.
View ArticleForum Post: RE: Perplexing UART constant SSP_ERR_OVERFLOW issue
Thanks Steve. My project will have a total of 4 UARTs running at the same time. There is only one DTC controller. Sounds like a nightmare to me. I have also tried just using the drivers and using the...
View ArticleForum Post: RE: BSP Help
Hi Karol: This is what I did: 1) Select the available board that is closest to your new custom board - this would be the s7g2. (DONE) 2) Make a copy of the existing pin configuration file and rename it...
View ArticleForum Post: RE: BSP Help
Instead of deleting s7g2_dk, I simply remove from project without sending to recycle bin (as before). The behavior is a little different, though there are still issues: It says I have 0 errors but...
View ArticleForum Post: RE: Can an S3A7 carry ThreadX and frameworks???
Hey Steve, My understanding is that, unless you have a good reason otherwise, to keep your priorities at the same level. So, exactly as you're thinking - the absolutely essential critical timer at 0 or...
View ArticleForum Post: RE: BSP Help
Hello jimctr, For the description you provided, it seems like you didn't change BSP on the BSP tab to "Custom User Board". This is why DK-S7 content keeps re-generating. Regards
View ArticleForum Post: RE: GUIX project with SSP1.2
Hi adboc, I will try. I see you use different instance structure in your code. I just wonder the problem is how I use in mine. i.e To open the guix, you use g_display.p_api->open(g_display.p_ctrl,...
View ArticleForum Post: RE: Perplexing UART constant SSP_ERR_OVERFLOW issue
Hi Steve, The DTC has slots in its vector table for every interrupt enabled in the system. So you can use DTC for all 4 UARTs if you choose. The overflow error means that characters are coming in when...
View ArticleForum Post: RE: BSP Help
OK. Got it. Looks like I missed this step second time around. Note however that the name appears with Upper Case Letters (when I originally did this, that was the case, but caused issues further along...
View ArticleForum Post: RE: BSP Help
OK, it compiles with no errors, but why are there no errors since the CASE does not correspond. Is this part CASE insensitive?
View ArticleForum Post: RE: Perplexing UART constant SSP_ERR_OVERFLOW issue
Thank you Kristine. What about including threadX source and then in the threadX source properties "Disable" "Timer Process in ISR" ??? This fixed some issues I had with threadX grabbing the cpu and not...
View Article