Tip / Sign in to post questions, reply, level up, and achieve exciting badges. Know more

cross mob

Example code associated with CYW943907AEVAL1F EVK User Guide

lock attach
Attachments are accessible only for community members.

Example code associated with CYW943907AEVAL1F EVK User Guide

KS_96
Employee
Employee
10 sign-ins 5 sign-ins 10 replies posted

Attached to this post are three examples that are specific for CYW943907AEVAL1F EVK.

These examples are briefed in the CYW943907AEVAL1F EVK User Guide.

Please refer to "2.2 Install Software" section of the same User Guide on how to add them.

Chapter "5. Code Examples" briefs about the same examples in the User guide.

Attachments
1775 Views
Comments
KiOk_2981821
Level 1
Level 1
First question asked First reply posted

I found "?" icon, while trying your CY943907AEVAL1F_KitPackage.zip with WICED-Studio-6.0.1.5 on Linux. Is it OK? Or should I fix it?

CY943907AEVAL1F_KitPackage_question.png

Anonymous
Not applicable

can i use any other instaed of WICED_BUTTON1 in the irq_enable

Anonymous
Not applicable

There are two user buttons on CYW943907AEVAL1F viz, WICED_BUTTON1 and WICED_BUTTON2, you can use either. As kavs​ has clearly stated in this blog, he has provided some example applications and you can modify the applications as per your requirement.

Anonymous
Not applicable

HI ricatmp1

I mean can we use any gpio for connecting my sensor other than BUTTON1 & BUTTON2 and raise a event when my sensor activated....

Anonymous
Not applicable

Ya you can enable any other GPIO for your use... Refer datasheet of CYW943907AEVAL1F for pin description...

Anonymous
Not applicable

THANK YOU for your response

wiced_gpio_input_irq_enable( WICED_BUTTON1,IRQ_TRIGGER_RISING_EDGE, setpoint_control_keypad_handler, NULL );

in the above function instead of WICED_BUTTON1 can i use any other GPIO. I used WICED_GPIO_44 but it is giving error. How to enable that WICED_GPIO_44 for which my sensor is connected. when my sensor is activated it has to publish data

Anonymous
Not applicable

The API wiced_gpio_input_irq_enable (wiced_gpio_t gpio, wiced_gpio_irq_trigger_t trigger, wiced_gpio_irq_handler_t handler, void *arg) enables an interrupt trigger for any input GPIO pin that is used in the function so you can use any other GPIO instead of WICED_BUTTON1.

Contributors