Skip to content

Arduino-MX25xxxYY is an Arduino Library for the Macronix MX25R6435F flash chip. It is a wrapper for the c-MX25xxxYY library.

License

Notifications You must be signed in to change notification settings

jcu-eresearch/Arduino-MX25-Series

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Arduino-MX25-Series

Arduino-MX25-Series is an Arduino wrapper for the c-MX25-Series library.

A very brief example:

#include "MX25Series.h"
#include "ArduinoMX25Series.h"

#define FLASH_RESET_PIN 27
#define FLASH_CS_PIN 28
#define FLASH_WP_PIN 4

ArduinoMX25Series flash;

void setup()
{
    Serial.begin(115200);
    bool found_flash = flash.begin(&MX25R6435F_Chip_Def_Low_Power, FLASH_CS_PIN, FLASH_RESET_PIN, FLASH_WP_PIN, &SPI);
    if(found_flash)
    {
        Serial.println("Chip found!....");
    }
}

void loop()
{
}

A more extensive example.

About

Arduino-MX25xxxYY is an Arduino Library for the Macronix MX25R6435F flash chip. It is a wrapper for the c-MX25xxxYY library.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages