Пікірлер
@attilalenart865
@attilalenart865 6 ай бұрын
Thank you very much for this video. Good details and easy to follow the instructions.
@Bill.Connor
@Bill.Connor Жыл бұрын
Why can't we just select the entire layer for export? Look at every other cad software and do that. Horrible design software.
@chirayubarde8971
@chirayubarde8971 Жыл бұрын
Do you know how to do a custom Board outline using Line? My board is not square/rectangular.
@jonathansgl4373
@jonathansgl4373 Жыл бұрын
Really helpful. Thanks!
@davidcbvalencia1
@davidcbvalencia1 Жыл бұрын
Please, can you continue on the curiosityNano tutorials?
@ryanmsparks
@ryanmsparks Жыл бұрын
Sure! Is there anything you want to see in particular?
@davidcbvalencia1
@davidcbvalencia1 Жыл бұрын
@@ryanmsparks thx in advance...Comunications on data Visualizer ,logic Cell.. and so on...:) I appreciate your tutorials a lot. (by the way. I'm not a native English speaker.)forgive my writing
@davidcbvalencia1
@davidcbvalencia1 Жыл бұрын
@@ryanmsparks I use Mac. I guess it does not matter
@TheBackyardScientist
@TheBackyardScientist Жыл бұрын
How do you vary the period and pulse width of the LED using this method? Here is the code im trying to use AMux_Select(0); int pot1 = ADC_SAR_GetResult8(); PWM_WriteCompare(pot1); CyDelay(100); AMux_Select(1); int pot2 = ADC_SAR_GetResult8(); PWM_WritePeriod(pot2); I think the PWM is switching between between writing the period, and writing the pulse width. I want it to update both values at the same time. hope that makes sense.
@ryanmsparks
@ryanmsparks Жыл бұрын
Makes sense to me! Because they're multiplexed though there isn't a way to read them simultaneously with this hardware configuration. Instead you have to read them separately just like you're doing, but I think the position of your delay statement is what's causing the "switching between" behavior you're talking about. Try moving your CyDelay to the end of that code block and see if it works better! :)
@shuvrajyotibose9002
@shuvrajyotibose9002 2 жыл бұрын
How to open & run existing project downloaded from Github into PSoc creator Software
@ekta7371
@ekta7371 2 жыл бұрын
Suppose we are having .c/.h files for PSoc Creator , So how can that can be implemented in to PSoc creator as a HEX file for uploading in to PSoc 5LP ?
@jona4385
@jona4385 2 жыл бұрын
Thank you so much
@LeoHoulston
@LeoHoulston 2 жыл бұрын
Praise the sun
@BasicScroller
@BasicScroller 2 жыл бұрын
Hello I'm receiving an error message concerning USBUART_PutString (Undefined reference to) I don't know why. Is this familiar with you?
@ryanmsparks
@ryanmsparks 2 жыл бұрын
That means the C compiler (which executes your software) doesn't know where the function "USBUART_PutString" is, and that's about all the information you get - but some background info might help you figure out why it can't find it. Since PSoC Creator generates that function when you build the hardware, I'd guess it's probably something to do with how you named your USBUART block. By default it comes like "USBUART_1", so in that case the function you'd use in software would be "USBUART_1_PutString" (or you can rename it and re-build your hardware). Now, that's not the only reason it might not be able to find it. Another reason might be if you accidentally removed an important "#include" statement, for example.
@georgesnowling926
@georgesnowling926 3 жыл бұрын
Great videos. Could you do one where you turn an LED on through putty? Also is there any way you could use an actual uart?
@ryanmsparks
@ryanmsparks 2 жыл бұрын
Thanks!! That's a great suggestion. If you're working on it now, It will probably come down to parsing the received string from PuTTY. Maybe check if the character in a particular index (for example 0, the first character) is a certain value (for example "a"), and if so turn the LED on. If it's a different value (for example, "b"), then turn the LED off.
@sreenivasbhaskara8102
@sreenivasbhaskara8102 3 жыл бұрын
Hi @ryan, Its showing USB device not recognized. Would you please help me with that?
@ryanmsparks
@ryanmsparks 3 жыл бұрын
Hi Sreenivas! That depends on which 'side' of the 5LP board your computer won't recognize... If it doesn't recognize the KitProg side, that'd be a problem with your Cypress installation or drivers. If it doesn't recognize the PSoC side, this can be indicative of a code issue (Possibly missing line 20 from the video?) Good luck!
@barbasbandas6665
@barbasbandas6665 3 жыл бұрын
Keep these comming! Great quallity. Subscribers will flood in soon :D
@ryanmsparks
@ryanmsparks 3 жыл бұрын
Thanks!! :)
@nalan_subra
@nalan_subra 3 жыл бұрын
Bro can I have a look at your code flowchart and system flowchart 🙏
@ryanmsparks
@ryanmsparks 3 жыл бұрын
I don't think I have any flowcharts or documentation for this board, I just made it as a demo for a different video (kzbin.info/www/bejne/gZPWgopupteIjsk) :)
@matthiasVanderCam-theundering
@matthiasVanderCam-theundering 3 жыл бұрын
Thank you for your video ! <3
@lio7076
@lio7076 3 жыл бұрын
great video :) while trying to understand UARTs with PSoC this really helped me
@ryanmsparks
@ryanmsparks 3 жыл бұрын
I'm glad it helped! :)
@SK-yo2gl
@SK-yo2gl 4 жыл бұрын
Excellent video! Looking forward to more of your content!
@ryanmsparks
@ryanmsparks 4 жыл бұрын
Thanks!! :)
@spencersillanpaa7777
@spencersillanpaa7777 4 жыл бұрын
This is awesome, its the exact part i needed to make, saved me lots of time!4
@ryanmsparks
@ryanmsparks 4 жыл бұрын
Happy it helped!