* Add SDK * fork * massaging makefile * Drop git module * Bring in sdk as its broken Far, Far to much crap to fix with regex now * Remove bl706 * rf_para_flash_t is missing defs * Remove crapton of junk * Remove yet more * Poking I2C * Update peripheral_config.h * Update pinmux_config.h * Update preRTOS.cpp * Update main.hpp * Setup template * Verbose boot * I2C ish * Update I2C_Wrapper.cpp * Update main.cpp * Turn off I2C reading for now * Display running * Roughing out scheduling timer0 * Starting ADC setup * Working scheduling of ADC 🎉 * Format adc headers * Update IRQ.cpp * Buttons working * Slow down I2C * Poking IRQ * Larger stack required * Accel on * Trying to chase down why __libc_init_array isnt working yet * Working c++ * Cleanup * Bump stacks * I2C wake part workaround * Cleanup * Working PWM init * qc draft * Hookup PWM * Stable enough ADC * ADC timing faster + timer without HAL * Silence * Remove boot banner * Tuning in ADC * Wake PID after ADC * Remove unused hal * Draft flash settings * Working settings save & restore * Update to prod model * Cleanup * NTC thermistor * Correct adc gain * Rough tip resistance progress * Scratch out resistance awareness of the tip * better adc settings * Tweaking ADC * ADC tweaking * Make adc range scalable * Update Dockerfile * Update configuration.h * Can read same ADC twice in a row * ADC Setup * Update PIDThread.cpp * Lesser adc backoff * Update USBPD.h * Add device ID * Update BSP_Power.h * Update BSP.cpp * DrawHex dynamicLength * Shorter ID padding * Show validation code * tip measurement * Create access for w0w1 * Expose w0 w1 * Enable debug * crc32 * Device validation * wip starting epr * Logic refactor * Safer PWM Init * PD cleanups * Update bl702_pwm.c * Update power.cpp * Update usb-pd * io * EPR decode * Better gui for showing pd specs * Rough handler for capabilities * EPR * Fix > 25V input * Perform pow step after PPS * Update BSP.cpp * Fix timer output * QC3 * Add tip resistance view * Hold PD negotiation until detection is done for tip res * Get Thermal mass * Tip res =0 protection * Update PIDThread.cpp * Update GUIThread.cpp * Rewrite tip resistance measurement * Update GUIThread.cpp * Fix fallback * Far better tip resistance measurement * Fix QC 0.6V D- * Convert the interpolator to int32 * Correct the NTC lookup * Update BSP.cpp * Update Setup.cpp * . Update configuration #defines More backported functions * Update usb-pd * More missed updates * Refactor BSP Magic BSP -> PinecilV2 Pine64 BSP -> Pinecil Update Makefile * Add Pinecilv2 to CI * Pinecil v2 multi-lang Update push.yml * Update HallSensor.md * Update README.md * Fix wrong prestartcheck default * Fix logo mapping * Update Makefile * Remove unused font block * Style * Style * Remove unused timer funcs * More culling TS80P * Revert "More culling TS80P" This reverts commit2078b89be7. * Revert "Remove unused timer funcs" This reverts commit0c693a89cc. * Make VBus check maskable * Remove DMA half transfer * Drop using brightness and invert icons and go back to text Saves flash space * Refactor settings UI drawing descriptions * Shorten setting function names * Store bin file assets * Fix MHP prestart
120 lines
4.7 KiB
C++
120 lines
4.7 KiB
C++
/*
|
|
* OLED.hpp
|
|
*
|
|
* Created on: 20Jan.,2017
|
|
* Author: Ben V. Brown <Ralim>
|
|
* Designed for the SSD1307
|
|
* Cleared for release for TS100 2017/08/20
|
|
*/
|
|
|
|
#ifndef OLED_HPP_
|
|
#define OLED_HPP_
|
|
#include "Font.h"
|
|
#include "configuration.h"
|
|
#include <BSP.h>
|
|
#include <stdbool.h>
|
|
#include <string.h>
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
#include "FreeRTOS.h"
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#ifdef OLED_I2CBB
|
|
#include "I2CBB.hpp"
|
|
#define I2C_CLASS I2CBB
|
|
#else
|
|
#define I2C_CLASS FRToSI2C
|
|
#include "I2C_Wrapper.hpp"
|
|
#endif
|
|
|
|
#define DEVICEADDR_OLED (0x3c << 1)
|
|
#define OLED_WIDTH 96
|
|
#define OLED_HEIGHT 16
|
|
#define FRAMEBUFFER_START 17
|
|
|
|
enum class FontStyle {
|
|
SMALL,
|
|
LARGE,
|
|
EXTRAS,
|
|
};
|
|
|
|
class OLED {
|
|
public:
|
|
enum DisplayState : bool { OFF = false, ON = true };
|
|
|
|
static void initialize(); // Startup the I2C coms (brings screen out of reset etc)
|
|
static bool isInitDone();
|
|
// Draw the buffer out to the LCD using the DMA Channel
|
|
static void refresh() {
|
|
I2C_CLASS::Transmit(DEVICEADDR_OLED, screenBuffer, FRAMEBUFFER_START + (OLED_WIDTH * 2));
|
|
// DMA tx time is ~ 20mS Ensure after calling this you delay for at least 25ms
|
|
// or we need to goto double buffering
|
|
}
|
|
|
|
static void setDisplayState(DisplayState state) {
|
|
displayState = state;
|
|
screenBuffer[1] = (state == ON) ? 0xAF : 0xAE;
|
|
}
|
|
|
|
static void setRotation(bool leftHanded); // Set the rotation for the screen
|
|
// Get the current rotation of the LCD
|
|
static bool getRotation() {
|
|
#ifdef OLED_FLIP
|
|
return !inLeftHandedMode;
|
|
#else
|
|
return inLeftHandedMode;
|
|
#endif
|
|
}
|
|
static void setBrightness(uint8_t contrast);
|
|
static void setInverseDisplay(bool inverted);
|
|
static int16_t getCursorX() { return cursor_x; }
|
|
static void print(const char *string, FontStyle fontStyle); // Draw a string to the current location, with selected font
|
|
static void printWholeScreen(const char *string);
|
|
// Set the cursor location by pixels
|
|
static void setCursor(int16_t x, int16_t y) {
|
|
cursor_x = x;
|
|
cursor_y = y;
|
|
}
|
|
// Draws an image to the buffer, at x offset from top to bottom (fixed height renders)
|
|
static void drawImage(const uint8_t *buffer, uint8_t x, uint8_t width) { drawArea(x, 0, width, 16, buffer); }
|
|
// Draws a number at the current cursor location
|
|
static void printNumber(uint16_t number, uint8_t places, FontStyle fontStyle, bool noLeaderZeros = true);
|
|
// Clears the buffer
|
|
static void clearScreen() { memset(firstStripPtr, 0, OLED_WIDTH * 2); }
|
|
// Draws the battery level symbol
|
|
static void drawBattery(uint8_t state) { drawSymbol(3 + (state > 10 ? 10 : state)); }
|
|
// Draws a checkbox
|
|
static void drawCheckbox(bool state) { drawSymbol((state) ? 16 : 17); }
|
|
static void debugNumber(int32_t val, FontStyle fontStyle);
|
|
static void drawHex(uint32_t x, FontStyle fontStyle, uint8_t digits);
|
|
static void drawSymbol(uint8_t symbolID); // Used for drawing symbols of a predictable width
|
|
static void drawArea(int16_t x, int8_t y, uint8_t wide, uint8_t height, const uint8_t *ptr); // Draw an area, but y must be aligned on 0/8 offset
|
|
static void drawAreaSwapped(int16_t x, int8_t y, uint8_t wide, uint8_t height, const uint8_t *ptr); // Draw an area, but y must be aligned on 0/8 offset
|
|
static void fillArea(int16_t x, int8_t y, uint8_t wide, uint8_t height, const uint8_t value); // Fill an area, but y must be aligned on 0/8 offset
|
|
static void drawFilledRect(uint8_t x0, uint8_t y0, uint8_t x1, uint8_t y1, bool clear);
|
|
static void drawHeatSymbol(uint8_t state);
|
|
static void drawScrollIndicator(uint8_t p, uint8_t h); // Draws a scrolling position indicator
|
|
static void maskScrollIndicatorOnOLED();
|
|
static void transitionSecondaryFramebuffer(bool forwardNavigation);
|
|
static void useSecondaryFramebuffer(bool useSecondary);
|
|
static void transitionScrollDown();
|
|
|
|
private:
|
|
static void drawChar(uint16_t charCode, FontStyle fontStyle); // Draw a character to the current cursor location
|
|
static void setFramebuffer(uint8_t *buffer);
|
|
static uint8_t *firstStripPtr; // Pointers to the strips to allow for buffer having extra content
|
|
static uint8_t *secondStripPtr; // Pointers to the strips
|
|
static bool inLeftHandedMode; // Whether the screen is in left or not (used for offsets in GRAM)
|
|
static bool initDone;
|
|
static DisplayState displayState;
|
|
static int16_t cursor_x, cursor_y;
|
|
static uint8_t displayOffset;
|
|
static uint8_t screenBuffer[16 + (OLED_WIDTH * 2) + 10]; // The data buffer
|
|
static uint8_t secondFrameBuffer[OLED_WIDTH * 2];
|
|
};
|
|
|
|
#endif /* OLED_HPP_ */
|