Forum Post: RE: Changing the edge sensitivity of Input capture driver
I was trying to used proposed solution but another issue appeared: I use standard API functions for GPT (open, start, etc.) which need control and config structures: timer_ctrl_t g_timer0_ctrl and...
View ArticleForum Post: RE: Problem getting USBX to start
Hey adboc!!! I'm so sorry I hadn't had time to answer back, but I just followed all your advice and now it got detected and both of them are working! Thank you for all your suggestions, and patience!!...
View ArticleForum Post: RE: Why the new look?
Hello Josh - Just a thought - I spent a bunch of time looking for where to get files from. Turns out this site doesn't call it "files" or "downloads" but instead "Synergy-Media gallery". I'm thinking...
View ArticleForum Post: RE: Deadlock and thread priority
Did you resolve this? Just looking at this quickly, it looks like the audio thread is waiting on an event flag. Given that it's higher priority, if it suspended waiting for that event flag while it...
View ArticleForum Post: Mutex Put when I don't own it.
So, what happens if I do a put on a mutex but I wasn't the one that owned it? Seems like it should be a safe (albeit wrong, disgusting, foolish, lazy) thing to do, but ya never know.
View ArticleForum Post: RE: Mutex Put when I don't own it.
Bill, If the thread does not own the mutex you will get a TX_NOT_OWNED error if you try to do a put to it. -Gary
View ArticleForum Post: RE: Timer creation using ThreadX
Hi sir normal spi program using threadx can i get this code?
View ArticleForum Post: RE: SPI driver on DK-S124
Hi sir can u send me the code of SPI using threadx
View ArticleForum Post: RE: Debugger and Optimization
Hi rlj, You can adjust optimization settings in Project > Properties > C/C++ Build > Settings > Tool Settings tab > Optimization. For debugging, you can choose -Og or -O0 optimization...
View ArticleForum Post: RE: DK-S124 USBX Example
hi sir, after completing debugging steps its showing usb has noot been recognized ..can i know the exact reason for usb
View ArticleForum Post: Need help with message
Hi, I'm trying to play an audio file after the LCD screen boot up. I used the example gx_audio_player as reference. below is part of the codes in the event_handler.c. The Guix post up the main screen...
View ArticleForum Post: RE: Need help with message
Hi dle, I think you should set 'class_code' (p_message->header.event_b.class_code) instead of 'class'. Regards, adboc
View ArticleForum Post: nx_tcp_client_socket_connect returning NX_INVALID_INTERFACE (0x4C)
Good afternoon, I am trying to connect as a socket client to a server. It really seems quite straightforward, but I am founding that every call to nx_tcp_client_socket_connect ends with error...
View ArticleForum Post: RE: Help with square signal output
Thanks garyj. I tried with the I/O drive strength in high but the maximun frequency I reached was 40 MHz and I need a signal with a frequency higher than that. I also tried the external bus clock but...
View ArticleForum Post: RE: Need help with message
Let me also add that if you're running with optimization that enabled code motion (i.e. O2, which is the default), then you will see that the break point is hit before code above is executed. In such...
View ArticleForum Post: RE: nx_tcp_client_socket_connect returning NX_INVALID_INTERFACE...
Hello Dani, I'm reading through the NetX Source Code and I can see that NX_INVALID_INTERFACE is returned only when the MTU for your interface is smaller than combined size of IP and TCP headers (i.e....
View ArticleForum Post: RE: Need help with message
part of inside audio thread entry, while(1) { status = g_sf_message.p_api->pend(g_sf_message.p_ctrl, &audio_thread_message_queue, (sf_message_header_t **) &p_cmd_message, 1); ........ } the...
View ArticleForum Post: RE: Why the new look?
Hi Bill! Thanks for the feedback - that makes sense to me. I'll pass it along to the developers! -Josh RenesasRulz Forum Moderator
View ArticleForum Post: RE: Help with square signal output
Hello Mguel, At 40MHz, the period of the wave is 25ns (i.e. 12.5ns low and 12.5ns high). For GPT32 in periodic mode, the output skew on any GTIOC pin is up to 4ns regardless of the drive capacity -...
View ArticleForum Post: RE: Need help with message
Hello, That means that queue is empty and message was not received (ssp_err_t). The application has been designed this way, in order to "simultaneously" pend on a queue and wait for audio playback...
View Article