test ssd1306 with arduino nano
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

136 lines
4.6 KiB

/*
MIT License
Copyright (c) 2018, Alexey Dynda
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
/**
* @file ssd1306_hal/io.h SSD1306 HAL IO communication functions
*/
#ifndef _SSD1306_HAL_IO_H_
#define _SSD1306_HAL_IO_H_
/**
* @defgroup SSD1306_HAL_API HAL: ssd1306 library hardware abstraction layer
* @{
*
* @brief i2c/spi ssd1306 library hardware abstraction layer
*
* @details ssd1306 library hardware abstraction layer
*/
#include "UserSettings.h"
#if defined(ARDUINO) && !defined(ENERGIA)
#include "arduino/io.h"
#elif defined(__AVR__) && !defined(ARDUINO)
#include "avr/io.h"
#elif defined(__XTENSA__) && !defined(ARDUINO)
#include "esp/io.h"
#elif defined(STM32F1) || defined(STM32F2) || defined(STM32F4)
#include "stm32/io.h"
#elif defined(__linux__)
#include "linux/io.h"
#elif defined(__MINGW32__)
#include "mingw/io.h"
#elif defined(ENERGIA)
#include "energia/io.h"
#else
#warning "Platform is not supported. Use template to add support"
#include "template/io.h"
#endif
#ifndef LCDINT_TYPES_DEFINED
/** Macro informs if lcdint_t type is defined */
#define LCDINT_TYPES_DEFINED
/** internal int type, used by ssd1306 library. Important for uC with low SRAM */
typedef int lcdint_t;
/** internal int type, used by ssd1306 library. Important for uC with low SRAM */
typedef unsigned int lcduint_t;
#endif
/** swaps content of a and b variables of type type */
#define ssd1306_swap_data(a, b, type) { type t = a; a = b; b = t; }
#ifdef __cplusplus
extern "C" {
#endif
// !!! PLATFORM I2C IMPLEMENTATION OPTIONAL !!!
#if defined(CONFIG_PLATFORM_I2C_AVAILABLE) && defined(CONFIG_PLATFORM_I2C_ENABLE)
/**
* Structure describes i2c pins used by platform
*/
typedef struct {
int8_t sda; ///< data pin number
int8_t scl; ///< clock pin number
} ssd1306_platform_i2cConfig_t;
/**
* @brief Initializes i2c interface for platform being used.
*
* Initializes i2c interface for platform being used. i2c implementation
* depends on platform.
*
* @param busId i2c bus number. Some platforms have several i2c buses. so, this
* argument identifies bus to use. For several platforms busId is not used.
* If you want to use default i2c bus for specific platform, please pass -1.
* @param addr i2c address of oled driver, connected to i2c bus. If you want to use default
* i2c display address, please, pass 0.
* @param cfg Specify scl and sda for the platform. If you want to use default pin numbers,
* please pass -1 for both members.
*/
void ssd1306_platform_i2cInit(int8_t busId, uint8_t addr, ssd1306_platform_i2cConfig_t * cfg);
#endif
// !!! PLATFORM SPI IMPLEMENTATION OPTIONAL !!!
#if defined(CONFIG_PLATFORM_SPI_AVAILABLE) && defined(CONFIG_PLATFORM_SPI_ENABLE)
/**
* @brief Initializes spi interface for platform being used.
*
* Initializes spi interface for platform being used. spi implementation
* depends on platform.
*
* @param busId spi bus number if device has several spi buses. For most AVR platforms
* busId is not used. If you want to use default spi bus for specific platform, please
* pass -1.
* @param cesPin chip select (chip enable) pin number. If you want to use default pin,
* hard coded by ssd1306 library, please, pass -1. For Linux platform cesPin means
* second number in spidev device.
* @param dcPin data/command pin number. For most oled displays this pin number is used to
* select data or command mode for the bus. If you want to use default pin number, please
* pass -1.
*/
void ssd1306_platform_spiInit(int8_t busId, int8_t cesPin, int8_t dcPin);
#endif
#ifdef __cplusplus
}
#endif
/**
* @}
*/
#endif