Tab5 audio, I2C improvements, UiDensity moved to lvgl-module and cleanup (#506)
- UiDensity moved to lvgl-module - Deleted tt_hal and tt_hal_gpio (breaks apps, but will fix those right after merging) - Added I2C 8 bit register operations - Added device.properties to simulator - Improved Tab5 hardware init, implement audio - Add README.md to kernel
This commit is contained in:
committed by
GitHub
parent
3a24d058c9
commit
d860ba1f34
@@ -1,32 +0,0 @@
|
||||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/** Affects LVGL widget style */
|
||||
typedef enum {
|
||||
/** Ideal for very small non-touch screen devices (e.g. Waveshare S3 LCD 1.3") */
|
||||
UiDensityCompact,
|
||||
/** Nothing was changed in the LVGL UI/UX */
|
||||
UiDensityDefault
|
||||
} UiDensity;
|
||||
|
||||
/** @deprecated use UiDensity */
|
||||
typedef enum {
|
||||
UiScaleSmallest, // UiDensityCompact
|
||||
UiScaleDefault // UiDensityDefault
|
||||
} UiScale;
|
||||
|
||||
/**
|
||||
* @deprecated Use UiDensity
|
||||
* @return the UI scaling setting for this device.
|
||||
*/
|
||||
UiScale tt_hal_configuration_get_ui_scale();
|
||||
|
||||
/** @return the UI scaling setting for this device. */
|
||||
UiDensity tt_hal_configuration_get_ui_density();
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
@@ -1,18 +0,0 @@
|
||||
#include "tt_hal.h"
|
||||
|
||||
#include <Tactility/Tactility.h>
|
||||
#include <Tactility/hal/Configuration.h>
|
||||
|
||||
extern "C" {
|
||||
|
||||
UiDensity tt_hal_configuration_get_ui_density() {
|
||||
auto density = tt::hal::getConfiguration()->uiDensity;
|
||||
return static_cast<UiDensity>(density);
|
||||
}
|
||||
|
||||
UiScale tt_hal_configuration_get_ui_scale() {
|
||||
auto density = tt::hal::getConfiguration()->uiDensity;
|
||||
return static_cast<UiScale>(density);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
#include "tt_hal_gpio.h"
|
||||
#include <Tactility/hal/gpio/Gpio.h>
|
||||
#include <tactility/device.h>
|
||||
#include <tactility/drivers/gpio_controller.h>
|
||||
|
||||
extern "C" {
|
||||
|
||||
using namespace tt::hal;
|
||||
|
||||
bool tt_hal_gpio_get_level(GpioPin pin) {
|
||||
return false;
|
||||
}
|
||||
|
||||
int tt_hal_gpio_get_pin_count() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -5,10 +5,8 @@
|
||||
#include "tt_app_selectiondialog.h"
|
||||
#include "tt_bundle.h"
|
||||
#include "tt_gps.h"
|
||||
#include "tt_hal.h"
|
||||
#include "tt_hal_device.h"
|
||||
#include "tt_hal_display.h"
|
||||
#include "tt_hal_gpio.h"
|
||||
#include "tt_hal_touch.h"
|
||||
#include "tt_hal_uart.h"
|
||||
#include <tt_lock.h>
|
||||
@@ -272,8 +270,6 @@ const esp_elfsym main_symbols[] {
|
||||
ESP_ELFSYM_EXPORT(tt_bundle_put_string),
|
||||
ESP_ELFSYM_EXPORT(tt_gps_has_coordinates),
|
||||
ESP_ELFSYM_EXPORT(tt_gps_get_coordinates),
|
||||
ESP_ELFSYM_EXPORT(tt_hal_configuration_get_ui_scale),
|
||||
ESP_ELFSYM_EXPORT(tt_hal_configuration_get_ui_density),
|
||||
ESP_ELFSYM_EXPORT(tt_hal_device_find),
|
||||
ESP_ELFSYM_EXPORT(tt_hal_display_driver_alloc),
|
||||
ESP_ELFSYM_EXPORT(tt_hal_display_driver_draw_bitmap),
|
||||
@@ -284,8 +280,6 @@ const esp_elfsym main_symbols[] {
|
||||
ESP_ELFSYM_EXPORT(tt_hal_display_driver_lock),
|
||||
ESP_ELFSYM_EXPORT(tt_hal_display_driver_unlock),
|
||||
ESP_ELFSYM_EXPORT(tt_hal_display_driver_supported),
|
||||
ESP_ELFSYM_EXPORT(tt_hal_gpio_get_level),
|
||||
ESP_ELFSYM_EXPORT(tt_hal_gpio_get_pin_count),
|
||||
ESP_ELFSYM_EXPORT(tt_hal_touch_driver_supported),
|
||||
ESP_ELFSYM_EXPORT(tt_hal_touch_driver_alloc),
|
||||
ESP_ELFSYM_EXPORT(tt_hal_touch_driver_free),
|
||||
|
||||
Reference in New Issue
Block a user