TOP Contributors

  1. MIKROE (2641 codes)
  2. Alcides Ramos (347 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (112 codes)
  5. Chisanga Mumba (90 codes)
  6. S P (73 codes)
  7. dany (71 codes)
  8. MikroBUS.NET Team (35 codes)
  9. NART SCHINACKOW (34 codes)
  10. Armstrong Subero (27 codes)

Most Downloaded

  1. Timer Calculator (136214 times)
  2. FAT32 Library (69476 times)
  3. Network Ethernet Library (55703 times)
  4. USB Device Library (45988 times)
  5. Network WiFi Library (41638 times)
  6. FT800 Library (40777 times)
  7. GSM click (28785 times)
  8. PID Library (26327 times)
  9. mikroSDK (26050 times)
  10. microSD click (25133 times)
Libstock prefers package manager

Package Manager

We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]

< Back
mikroSDK Library

FRAM click

Rating:

0

Author: MIKROE

Last Updated: 2018-03-13

Package Version: 1.0.0.1

mikroSDK Library: 1.0.0.0

Category: FRAM

Downloaded: 7358 times

Followed by: 2 users

License: MIT license  

Simple demonstration of using MB85RS256A FRAM chip. Example demonstrates writing and reading from FRAM chip

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "FRAM click" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "FRAM click" changes.

Do you want to report abuse regarding "FRAM click".

  • mikroSDK Library 2.0.0.0
  • Comments (0)
DOWNLOAD LINK RELATED COMPILER CONTAINS
mikroBasic PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroBasic PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroC PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for ARM
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for AVR
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for dsPIC30/33 & PIC24
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for FT90x
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for PIC
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc
mikroPascal PRO for PIC32
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc

mikroSDK Library Blog

FRAM click

FRAM click

Native view of the FRAM click board.

View full image
FRAM click board

FRAM click board

Front and back side appearance of the FRAM click Board.

View full image

Library Description

Key functions:

  • void fram_write(uint16_t address, uint8_t *buffer, uint16_t counter) - The function writes to sequential memory locations from the buffer.
  • void fram_read(uint16_t address, uint8_t *buffer, uint16_t count) - The function reads sequential memory locations to the buffer.
  • void fram_writeEnable() - The function enables data writing in the FRAM memory space.

Examples Description

The application is composed of three sections:

  • System Initialization - GPIO and SPI module Initialization.
  • Application Initialization -  Fram Driver Initialization, initialization of click by setting mikorBUS pins to an appropriate logic level, performing erase all and write enable functions.
  • Application Task - Writing data to click memory and displaying the read data via UART.
void applicationTask()
{
 mikrobus_logWrite("Writing MikroE to Fram memory, from address 0x0150:",
_LOG_LINE);
 fram_write (0x0150, &wrData[0], 9);
 mikrobus_logWrite("Reading 9 bytes of Fram memory, from address 0x0150:",
_LOG_LINE);
 fram_read(0x0150,&rdData[0],9);
 mikrobus_logWrite("Data read: ",_LOG_TEXT);
 mikrobus_logWrite(rdData,_LOG_LINE);
 Delay_ms(1000);
}

Other mikroE Libraries used in the example:

  • SPI
  • UART

Additional notes and information

Depending on the development board you are using, you may need USB UART click,  USB UART 2 click or RS232 click to connect to your PC, for development systems with no UART to USB interface available on the board. The terminal available in all MikroElektronika compilers, or any other terminal application of your choice, can be used to read the message.

 

ALSO FROM THIS AUTHOR

POT click

0

POT Click is a Click board™ with the accurate selectable reference voltage output. By employing a high-quality 10mm carbon potentiometer, this Click board™ can provide very accurate voltage output.

[Learn More]

click USB adapter - Example

1

This PC application demonstrates how click USB adapter board can be used in combination with GSM click to send SMS directly from PC application to desired phone number. Next to simple SMSender you'll find AT terminal which gives you additional control over GSM module.

[Learn More]

Key Lock 2 click

0

Keylock 2 Click carries antistatic process sealed keylock mechanism that has three positions.

[Learn More]