PSoC™ 6 Forum Discussions
Hi,
Can I use third party TFLITE models and 'model to C array' converters? Tensorflow converter: https://github.com/tensorflow/tensorflow/blob/master/tensorflow/lite/python/util.py convert_bytes_to_c_source routine.
So other TFLITE files are compatible with PSoc6 ML library? Also can I use the tensorflow converter to create the C array?
Show Less
Hi,
I'm currently using FreeRTOS in my project but only utilizing a minimal set of its features. I need to remove clib-support and abstraction-rtos, retaining only FreeRTOS. This is to achieve a lighter application and minimize dependencies to the utmost extent. How could I do that ?
Thank you for your assistance.
Show LessHi,
Please tell me the switching frequency of the Buck regulator in PSoC6.
Thanks,
Shimamura
客户使用modustoolbox开发CY8C6245AZI-S3D72,在正常编译通过的工程下增加了全局变量数组的长度,结果编译报错,初步判断是RAM超了。通过对比发现 .bss的大小最大是25292,如附件描述,请帮忙确认根本原因和提供解决方案,谢谢!
Hi,
I am trying to install cysecure tool in cygwin and getting errors.
I am using python 3.9, have git and gcc installed. Below is my fail log. Can anyone direct how to do a clean install of cysecuretool in IFX environment in CYGWIN?
Thanks,
Umar
pip install --upgrade --force-reinstall git+https://gitlab.intra.infineon.com/repo/edgeprotecttools.git
Show LessHello all. I have been working with the GATT_OUT example program. Using my phone app nRF Toolbox. I am able to transmit text from the app to the ble chip then read it out the Tx serial port. I understand that the CY_BLE_EVT_GATTS_WRITE_REQ is handling this operation.
My issue now is I am trying to go in the reverse direction. I set up this function
void App_UART_BLE_Tx(uint8_t *data, uint16 len)
{
// Use UART_Transmit to send the received data over UART to the terminal
// Here should be implemented interface to sent UART
// to BLE by Notification TX characteristic....
cy_en_ble_api_result_t apiResult;
cy_stc_ble_gatt_handle_value_pair_t handleValuePair;
// send notification to TX....
//DEBUG_BLE("Cy_BLE_GATTS_SendNotification \r\n");
handleValuePair.attrHandle = CY_BLE_UART_SERVICE_TX_CHAR_HANDLE;
handleValuePair.value.val = data;
handleValuePair.value.len = len;
apiResult = Cy_BLE_GATTS_SendNotification(&appConnHandle, &handleValuePair);
if(apiResult)
{
DEBUG_BLE("Attrhandle = 0x%4X Cy_BLE_GATTS_Notification API Error:"\
"0x%2.2x \r\n", handleValuePair.attrHandle, apiResult);
}
}
Which when I add it to the CY_BLE_EVT_GATTS_WRITE_REQ event will echo whatever I type in the phone app so I know it works.
Is there an example or an event already written that handles writing from the BLE chip to the phone app?
Show LessI have incorporated a CY8C6244 into a new product. Finding a programmer seems to be a problem. Miniprog3 doesn't seem to be a solution since the device is not supported by PSoC Creator. Miniprog4 doesn't seem to be available from any source. Segger appears to be an option. Miniprog3 is still available from multiple vendors. Is there any way to program the device using Miniprog3?
Show LessThe model I'm using now is Cy8ckit-062-wifi-BT. When I run the sample project for this model, I can find the GUI.h header file, but when I create my own project, I get an error because I can't find the GUI.h header file. Why is this happening, and is there any solution? If it's because the header file is missing, can I just copy the GUI.h in the sample project to the folder of the project I created? But I don't really know the exact location of the folder, can you help me point it out?
Also, I quit the software after running the project, and I can't modify the code when I open the project again. What is the reason for this? What should I do to revise and modify the code?
Hello Team Cypress, I am using Psoc 6 series microntroller CY8CKIT-062-WIFI-BT and currently i am trying to debug example memory code SERIAL FLASH READ WRITE . I want to know the address where the memory is stored and how can i view that location.
Show Less