123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- #include <stdio.h>
- #include <malloc.h>
- #include <memory.h>
- #include "pico/stdlib.h"
- #include "hardware/i2c.h"
- #include "hardware/dma.h"
- #define I2C_SCL PICO_DEFAULT_I2C_SCL_PIN
- #define I2C_SDA PICO_DEFAULT_I2C_SDA_PIN
- #define SSD1306_ADDR 0x3C // SSD1306のデフォルトのI2Cアドレス
- #define SSD1306_HEIGHT 32
- #define SSD1306_WIDTH 128
- // SSD1306コマンド定義
- #define SSD1306_SET_MEM_MODE _u(0x20)
- #define SSD1306_SET_COL_ADDR _u(0x21)
- #define SSD1306_SET_PAGE_ADDR _u(0x22)
- #define SSD1306_SET_HORIZ_SCROLL _u(0x26)
- #define SSD1306_SET_SCROLL _u(0x2E)
- #define SSD1306_SET_DISP_START_LINE _u(0x40)
- #define SSD1306_SET_CONTRAST _u(0x81)
- #define SSD1306_SET_CHARGE_PUMP _u(0x8D)
- #define SSD1306_SET_SEG_REMAP _u(0xA0)
- #define SSD1306_SET_ENTIRE_ON _u(0xA4)
- #define SSD1306_SET_ALL_ON _u(0xA5)
- #define SSD1306_SET_NORM_DISP _u(0xA6)
- #define SSD1306_SET_INV_DISP _u(0xA7)
- #define SSD1306_SET_MUX_RATIO _u(0xA8)
- #define SSD1306_SET_DISP _u(0xAE)
- #define SSD1306_SET_COM_OUT_DIR _u(0xC0)
- #define SSD1306_SET_COM_OUT_DIR_FLIP _u(0xC0)
- #define SSD1306_SET_DISP_OFFSET _u(0xD3)
- #define SSD1306_SET_DISP_CLK_DIV _u(0xD5)
- #define SSD1306_SET_PRECHARGE _u(0xD9)
- #define SSD1306_SET_COM_PIN_CFG _u(0xDA)
- #define SSD1306_SET_VCOM_DESEL _u(0xDB)
- #define SSD1306_PAGE_HEIGHT _u(8)
- #define SSD1306_NUM_PAGES (SSD1306_HEIGHT / SSD1306_PAGE_HEIGHT)
- #define SSD1306_BUF_LEN (SSD1306_NUM_PAGES * SSD1306_WIDTH)
- #define SSD1306_WRITE_MODE _u(0xFE)
- #define SSD1306_READ_MODE _u(0xFF)
- #define SSD1306_CONTROL_CMD _u(0x80)
- #define SSD1306_CONTROL_DATA _u(0x40)
- // SSD1306フレームバッファの領域指定
- typedef struct {
- uint8_t start_col;
- uint8_t end_col;
- uint8_t start_page;
- uint8_t end_page;
- } ssd1306_rect_t;
- inline int ssd1306_buf_len(ssd1306_rect_t *r)
- {
- return (r->end_col-r->start_col+1)*(r->end_page-r->start_page+1);
- }
- // コマンド発行
- void ssd1306_send_cmd(uint8_t cmd)
- {
- uint8_t buf[2] = {SSD1306_CONTROL_CMD, cmd}; // 0x80 = コマンド
- i2c_write_blocking(i2c0, SSD1306_ADDR, buf, 2, false);
- }
- // SSD1306を初期化
- void ssd1306_init()
- {
- /* memory mapping */
- ssd1306_send_cmd(SSD1306_SET_MEM_MODE); // set memory address mode
- ssd1306_send_cmd(0x00); // horizontal addressing mode
- /* resolution and layout */
- ssd1306_send_cmd(SSD1306_SET_DISP_START_LINE); // set display start line to 0
- ssd1306_send_cmd(SSD1306_SET_SEG_REMAP | 0x01); // set segment re-map
- // column address 127 is mapped to SEG0
- ssd1306_send_cmd(SSD1306_SET_MUX_RATIO); // set multiplex ratio
- ssd1306_send_cmd(SSD1306_HEIGHT - 1); // 32 pixels high
- ssd1306_send_cmd(SSD1306_SET_COM_OUT_DIR | 0x08); // set COM (common) output scan direction
- // scan from bottom up, COM[N-1] to COM0
- ssd1306_send_cmd(SSD1306_SET_DISP_OFFSET); // set display offset
- ssd1306_send_cmd(0x00); // no offset
- ssd1306_send_cmd(SSD1306_SET_COM_PIN_CFG); // set COM (common) pins hardware configuration
- ssd1306_send_cmd(0x02); // manufacturer magic number
- /* timing and driving scheme */
- ssd1306_send_cmd(SSD1306_SET_DISP_CLK_DIV); // set display clock divide ratio
- ssd1306_send_cmd(0x80); // div ratio of 1, standard freq
- ssd1306_send_cmd(SSD1306_SET_PRECHARGE); // set pre-charge period
- ssd1306_send_cmd(0xF1); // Vcc internally generated on our board
- ssd1306_send_cmd(SSD1306_SET_VCOM_DESEL); // set VCOMH deselect level
- ssd1306_send_cmd(0x30); // 0.83xVcc
- /* display */
- ssd1306_send_cmd(SSD1306_SET_CONTRAST); // set contrast control
- ssd1306_send_cmd(0xFF);
- ssd1306_send_cmd(SSD1306_SET_ENTIRE_ON); // set entire display on to follow RAM content
- ssd1306_send_cmd(SSD1306_SET_NORM_DISP); // set normal (not inverted) display
- ssd1306_send_cmd(SSD1306_SET_CHARGE_PUMP); // set charge pump
- ssd1306_send_cmd(0x14); // Vcc internally generated on our board
- ssd1306_send_cmd(SSD1306_SET_SCROLL | 0x00); // deactivate horizontal scrolling if set
- // this is necessary as memory writes will corrupt if scrolling was enabled
- ssd1306_send_cmd(SSD1306_SET_DISP | 0x01); // turn display on
- }
- // データ送信
- void ssd1306_send_data(uint8_t *buf, uint len)
- {
- uint8_t *temp_buf = malloc(len+1);
- for (int i = 1; i < len + 1; i++) {
- temp_buf[i] = buf[i - 1];
- }
- temp_buf[0] = SSD1306_CONTROL_DATA; // データ
- i2c_write_blocking(i2c0, SSD1306_ADDR, temp_buf, len+1, false);
- free(temp_buf);
- }
- // OLEDエリア書き込み
- void ssd1306_write_area(uint8_t *buf, ssd1306_rect_t *rect)
- {
- uint8_t cmd[6];
- ssd1306_send_cmd(SSD1306_SET_COL_ADDR);
- ssd1306_send_cmd(rect->start_col);
- ssd1306_send_cmd(rect->end_col);
- ssd1306_send_cmd(SSD1306_SET_PAGE_ADDR);
- ssd1306_send_cmd(rect->start_page);
- ssd1306_send_cmd(rect->end_page);
- ssd1306_send_data(buf, ssd1306_buf_len(rect));
- }
- void ssd1306_clear(void)
- {
- size_t buf_size = SSD1306_WIDTH * SSD1306_NUM_PAGES;
- uint8_t *buf =(uint8_t *)calloc(buf_size, sizeof(uint8_t));
- ssd1306_rect_t rect;
- rect.start_col = 0;
- rect.end_col = SSD1306_WIDTH - 1;
- rect.start_page = 0;
- rect.end_page = SSD1306_NUM_PAGES - 1;
- ssd1306_write_area(buf, &rect);
- free(buf);
- }
- // 画像ファイルの埋め込み
- __asm(\
- ".section \".rodata\" \n"
- ".balign 4\n"
- ".global _image_data\n"
- ".global _image_data_len\n"
- "_image_data:\n"
- ".incbin \"ssd1306img.bin\"\n"
- ".set _image_data_len, . - _image_data\n"
- ".section \".text\"\n"
- );
- extern const uint8_t _image_data[]; // 画像データ先頭アドレス
- extern uint32_t _image_data_len[]; // 画像データ長
- int dma_ch;
- dma_channel_config dmac_config;
- static uint16_t *dma_buffer;
- void dma_irq_handler()
- {
- // 割り込みフラグクリア
- dma_channel_acknowledge_irq0(dma_ch);
- while(i2c_get_write_available(i2c0) != 16);
- i2c0_hw->data_cmd = 0x200; // STOP Condition = bit 9
- free(dma_buffer);
- }
- void ssd1306_write_dma_area(uint8_t *buf, ssd1306_rect_t *rect)
- {
- uint8_t cmd[1] = {SSD1306_CONTROL_DATA};
- size_t len = ssd1306_buf_len(rect);
- dma_buffer = malloc(len * sizeof(uint16_t));
- for(int i = 0; i < len; i++) {
- dma_buffer[i] = buf[i];
- }
- dma_ch = dma_claim_unused_channel(true);
- dmac_config = dma_channel_get_default_config(dma_ch);
- channel_config_set_transfer_data_size(&dmac_config, DMA_SIZE_16);
- channel_config_set_read_increment(&dmac_config, true);
- channel_config_set_write_increment(&dmac_config, false);
- // channel_config_set_bswap(&dmac_config, true);
- uint dreq = i2c_get_dreq(i2c0, true);
- channel_config_set_dreq(&dmac_config, dreq);
- // DMAチャンネルの設定
- dma_channel_configure(
- dma_ch, // DMAチャンネル
- &dmac_config, // 構成情報
- &i2c0_hw->data_cmd, // 書き込みアドレス
- dma_buffer, // 転送元レジスタアドレス
- len, // 転送データサイズ
- false // すぐに開始ならtrue
- );
- dma_channel_set_irq0_enabled(dma_ch, true);
- irq_set_exclusive_handler(DMA_IRQ_0, dma_irq_handler);
- irq_set_enabled(DMA_IRQ_0, true);
- // エリア設定
- ssd1306_send_cmd(SSD1306_SET_COL_ADDR);
- ssd1306_send_cmd(rect->start_col);
- ssd1306_send_cmd(rect->end_col);
- ssd1306_send_cmd(SSD1306_SET_PAGE_ADDR);
- ssd1306_send_cmd(rect->start_page);
- ssd1306_send_cmd(rect->end_page);
- // SSD1306_CONTROL_DATAをバースト書き込み
- i2c_write_burst_blocking(i2c0, SSD1306_ADDR, cmd, 1);
- // DMA転送開始
- dma_channel_start(dma_ch);
- }
- int main()
- {
- stdio_init_all();
- // I2C0を400kbpsで初期化
- i2c_init(i2c0, 400*1000);
- // ピンをI2Cに割り当て
- gpio_set_function(I2C_SDA, GPIO_FUNC_I2C);
- gpio_set_function(I2C_SCL, GPIO_FUNC_I2C);
- gpio_disable_pulls(I2C_SDA);
- gpio_disable_pulls(I2C_SCL);
- // 外付けでプルアップした場合次の2行をコメントアウト
- gpio_pull_up(I2C_SDA);
- gpio_pull_up(I2C_SCL);
- ssd1306_init();
- ssd1306_clear();
- ssd1306_rect_t rect;
- rect.start_col = 0;
- rect.end_col = SSD1306_WIDTH - 1;
- rect.start_page = 0;
- rect.end_page = SSD1306_NUM_PAGES;
- ssd1306_write_dma_area((uint8_t *)_image_data, &rect );
- while (true) {
- tight_loop_contents();
- }
- }
|