chore: 移除 pages_stub.c(已被 dzbj/pages.c 替代)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Rdzleo 2026-02-28 10:23:28 +08:00
parent 14776acb0a
commit c4de88d7ee

View File

@ -1,15 +0,0 @@
// Stub 实现dzbj UI 文件引用的函数Phase 1 仅提供空实现
// 实际实现将在后续阶段添加
#include <stdint.h>
#include <stdbool.h>
#include <stddef.h>
const char* get_current_image(void) { return NULL; }
bool delete_current_image(void) { return false; }
void init_spiffs_image_list(void) {}
void free_spiffs_image_list(void) {}
bool set_image_index_by_name(const char *name) { (void)name; return false; }
const char* get_next_image(void) { return NULL; }
const char* get_prev_image(void) { return NULL; }
void update_ui_ImgBle(const char *img_name) { (void)img_name; }