Oct 11, 2012
Here is a video that I created for Getting started with PSoC Designer 5.3. View it in 720p or 1080p for higher quality.
Rating:
Be the first to rate
Oct 01, 2012
Here is a video I made on introduction to PSoC 1 architecture and design flow.
Rating:
Be the first to rate
Mar 19, 2011
Back to the blog world after a long period of inactivity. In the past few months, I have had a chance to work on a very interesting project for our CEO T.J. Rodgers. He is donating 152 wine fermenters to the U.C Davis School of Enology and Viticulture. A couple of articles that talk about the project: Blending Science With Wine, UC Davis claims world’s greenest winery
LT1303 is a charge pump, which is used to step up the 3.5V - 4.5V battery voltage to 15V and charge C6, a 2200uF capacitor. J3 is a socket for the Orbit valve. The common is connected to the +ve of the 2200uF capacitor. The other two pins are connected to the drain of T1 and T2, N Channel MOSFETs. Applying a pulse to the gate of these transistors will discharge the charge in capacitor through the corresponding coil. Let us have the look at how the PSoC controls this circuit. The PSoC controls the charge pump through the CH_PMP_SHDN and VB_FB signals. CH_PMP_SHDN is a GPIO pin configured as StdCPU/Strong and turns on or off the charge pump. VB_FB is the feedback signal used to sense the voltage on the 2200uF capacitor. Figure below shows the PSoC Designer resource placement for the valve control.
Stay tuned for more interesting topics on the Fermenter!
Rating:
(4/5) by 1
user
Sep 22, 2009
The E2PROM user module is a very handy user module for emulating an E2PROM in the Flash program memory. Here are some key points to remember while using the E2PROM user module. My apologies for the very long article. Wanted to keep it short, but as I kept adding information this grew into a 1000+ word blo(n)g.
User Module Parameters: Starting Block: This specifies the flash block number where the E2PROM begins. Always place the E2PROM in the last blocks of the flash. For example, in a 32K device, a 256 byte (4 blocks) E2PROM should be placed in blocks 508 to 511. So, the first block should be 508. This ensures that maximum space is available for the code memory and prevents clash between code memory and E2PROM. Remember to modify the flashsecurity.txt file and set the protection level of the flash blocks to “U” or “R” w w w w w w w w w w w w w w w w ; Base Address 7800 E2PROM Write Function: To write data to the E2PROM, use the E2PROM_bE2Write function. The prototype of the function is char E2PROM_bE2Write(WORD wAddr, BYTE *pbData, WORD wByteCount, char Temperature); wAddr: This is the location in the E2PROM where you would like to write the data. A very common mistake made is people enter the physical address of the flash location. The value should be relative location in the E2PROM, not in flash. For the example mentioned above, to write data to the first location in the E2PROM, the value of wAddr should be 0x0000, not 0x7F00. *pbData: This is the pointer to the buffer that holds the data you want to write to the E2PROM. If the data is not in a char buffer, then you use typecasting. For example, if to write a structure MyStruct, typecast the pointer to (char*)&MyStruct. wByteCount: This is the number of bytes to be written to the E2PROM. More about it later. Temperature: The Temperature parameter is used by the E2PROM API to calculate the flash write pulse width. At higher temperatures the flash has to be written with a smaller pulse width and at lower temperatures with a longer pulse width. The flash will meet its maximum endurance and write cycles if it is written with the correct pulse width. If the device is going to operate within a temperature range of 0 to 50 degrees, it is ok to pass the value of 25 for temperature. But for operation over the full temperature range, use FlashTemp user module and pass the correct die temperature. If this is not done, either the data retention or the flash endurance will be compromised. If the temperature value passed is less than the operating temperature, the flash will be written with a longer pulse width than required. This will reduce the flash endurance. On the other hand, if the temperature value passed is higher than the operating temperature, the flash will be written with a lower pulse width than required. While this does not affect the endurance, the data retention will be less than the guaranteed 10 years. The bE2Write function returns the status of the write operation. A return value of 0x00 means the write was successful. -1 means error in writing which could be because the flash is write protected. -2 means stack overflow. Always check the return value in your program to make sure that the write was successful. E2PROM writes always take place in 64 byte blocks. When you write less than 64 bytes of data, it is called a partial write. The flash write API first reads all the 64 bytes from the flash block into RAM, modifies the desired bytes and writes back the 64 bytes of data to Flash. This results in a heavy RAM overhead requiring 103 bytes of stack space, whereas a full block write takes only 32 bytes of stack. In devices with only one RAM page, the global variables and stack share the 256 bytes. If the RAM usage of the globals is high, this could lead to stack overflow errors while performing partial writes. Under such condition, it is always advisable to perform a 64 byte write. Even if you are writing say 10 bytes of data, set the ByteCount to 64. The first 10 bytes will be the actual data followed by data from subsequent RAM locations. Check out the E2PROM user module data sheet under the section “Efficient Memory Usage” for more details. Initializing the E2PROM with data: Many a times you may be using the E2PROM to store calibration data or any other system related data, where you would like to load the E2PROM with some initial values while the device is programmed. Following method may be used to achieve this. In C: Use the “#pragma abs_address” directive. For example, if the E2PROM is placed in the last flash block in a 32K device, and if you wanted to initialize the first 10 bytes with some value: #pragma abs_address 0x7FC0
In assembly: area eeprom(rom, abs) A Practical Situation – Storing and Retrieving a Structure Let us take a look at a practical E2PROM usage where a calibration structure is stored, read and written in the E2PROM. Create a typedef for the structure
typedef struct CAL_STRUCT RAM variable to store the calibration values
CAL_STRUCT CalValuesRam; Initialize the E2PROM with initial values:
#pragma abs_address 0x7FC0 Now to read the value from the E2PROM to the RAM you can use either the E2PROM_Read function: E2PROM_E2Read(0x0000, char* &CalValuesRam, sizeof(CalValuesRam)); Or: CalValuesRam = CalValuesEeprom; To write the values from the RAM to E2PROM E2PROM_bE2Write(0x0000,(char*)&CalValuesRam, 64, 25);
Rating:
(5/5) by 4
users
|
||||||||||||||||||||||
Content on this site may contain or be subject to specific guidelines or limitations on use. All postings and use of the content on this site are subject to the Terms and Conditions of the site; third parties using this content agree to abide by any limitations or guidelines and to comply with the Terms and Conditions of this site. Cypress Semiconductor and its suppliers reserve the right to make corrections, deletions, modifications, enhancements, improvements and other changes to the content and materials, its products, programs and services at any time or to move or discontinue any content, products, programs, or services without notice.











Tags: 









