PSoC™ 6 Forum Discussions
Hello,
Is there an example of an application that allows TLS authentication (just authentication, without any further information exchange) via UART, USB CDC-ACM or USB CDC-NCM connection using Mbed-TLS with hardware acceleration?
Is there any set of examples from which I would be able to put together such an application?
Thanks in advance
Show LessIn my CY8CKIT-062S2-43012 board I looking for expanding RAM for operations of mallocs functions.
I have come across one example (QSPI_F-RAM_Access) where QSPI is used for reading and writing in F-RAM. I am not if this is the best example for expanding the RAM for the above purpose. Is that correct understanding?
I thought F-RAM has support for memory-mapped access of RAM but I can not find any example for that. Please share the link for such an example on any PSoC board.
Show LessHello everyone,
I made a testing firmware that blinks an LED, which runs fine on my development board CY8CKIT-062S2-43012 but not on my custom board, which seems not to run the firmware at all. The MCU revision is slightly different (read by the programmer).
Development board:
Detected device PN: CY8C624ABZI-S2D44 SiliconID: E453 Revision: 12 FamilyID: 102 DIE: PSoC6A2M (read by the programmer)
CY8C624ABZI-S2D44ES2 (written on chip)
Custom board:
Detected device PN: CY8C624ABZI-D44 SiliconID: E402 Revision: 11 FamilyID: 102 DIE: PSoC6A2M (read by the programmer)
CY8C624ABZI-S2D44A0 (written on chip)
I see that the chip revision is different (Rev 12 on dev board and rev 11 on my board). Are there any firmware considerations I need to take into account between these 2 revisions or should the same firmware just work on both of them?
Are there any hardware considerations I need to take into account between these 2 revisions?
UPDATE: dev board has WCO but our board doesn't. What changes do I need to make to disable the WCO? I found #define CY_CFG_SYSCLK_WCO_ENABLED 1 in cycfg_system.c but commenting it out breaks the firmware on the dev kit as well.
Many thanks,
Remus.
Hello,
when I add svd file to see the peripheral register,every port (port0 to port14) has the same address.
※modus version is 2.2
But in another version(2.3),GPIO shows a correct address .
Was it a bug in version 2.2 Or I did a wrong config?.
Show LessHello, I am a novice, just contacted Modus ToolBox software, using the kit is CY8CKIT-062S2-43012; now I want to create a new project to practice, but this page appears, I do not know what to do next; sample program "Hello World" I also did not find, thank you for your answer
Show Less
Hi All,
Can someone give me an estimate of the power consumption of the chipset in the following modes.
1. Deep Sleep
2. ADC Data Input
3. Data Processing
4. Transmission
Thank you in advance.
Show LessWhat are the minimum requirements that an MCU must have to support the SDIO interface of a hosted WiFi/BLE module?
For example, how can I tell if a CY8C6247BZI-D44T can be paired with a CYW43012 based Murata 1LV or a CYW4343 based Laird 450-0159 or 450-0152?
Greg
Show LessDears,
I am unable to find "Tool Settings" under C/C++ Build as shown in some tutorials, manuals for Modus Toolbox IDE. Where are these settings in Modus Toolbox IDE - 2.4.0 version ? In previous release it was under Project Properties: C/C++ Build -> Settings as shown on this picture:
And for comparison - In 2.4.0 release the "Tool Settings" tab is missing:
Thanks in advance and Best Regards
Radim
Show LessHello! Im currently trying to read a JSON file in my psoc project for the cyproto-063-BLE but i cannot get it to work.
I have a JSON file that im trying to include in the project, read from and extract the data, im using the tiny-json parser (https://github.com/rafagafe/tiny-json). The parser works as intended, if i manually store the JSON as a string, i can parse and extract data as i please. The issues arise when i try to include the .json file into the project and open/read from it.
Here is a code snippet
static const char filename[] = "test.json";
FILE *file = fopen ( filename, "r" );
char buffer[128];
fread(buffer, 128, 1, file);
printf("line = %s\r\n", buffer);
fclose(file);
json_t what[32];
json_t const* json2 = json_create( buffer, what, sizeof what / sizeof *what );
char const* name = json_getPropertyValue(json2, "Name");
printf( "Name: %s.\r\n", name );
I have included the file under source files, as well as added the filepath to Project->Build settings->CM0+->Compiler->Additional Include Directiories.
Following the debugger the program crashes at line "fread(buffer, 128, 1, file);"
Does anyone have any input on how to read and store the JSON file in psoc programmer, the file opening and reading works well when isolated in a regular C file ran through the terminal. I'll attach a test project where i try to read a json test file and print it to serial monitor using UART. Relevant header and json files are in a folder in the project called External_Code.
Any help is greatly appreciated!
//Arvid
Show LessHi All,
Could any of you help me in setting the sampling frequency of the PSOC6 chipset ADC to 2KHz?
The minimum clock frequency the ADC can take in is 1.7MHz and I am unable to find a reasonable way to lower the sampling frequency.
Any suggestions are welcome. Thanks in advance.
Show Less