mirror of
https://github.com/qmk/qmk_firmware.git
synced 2026-07-21 05:14:12 -04:00
314 lines
26 KiB
JavaScript
314 lines
26 KiB
JavaScript
import { _ as _export_sfc, C as resolveComponent, o as openBlock, c as createElementBlock, al as createStaticVNode, E as createVNode, w as withCtx, j as createBaseVNode, a as createTextVNode } from "./chunks/framework.8zKZLKO7.js";
|
|
const __pageData = JSON.parse('{"title":"Persistent Configuration (EEPROM)","description":"","frontmatter":{},"headers":[],"relativePath":"feature_eeprom.md","filePath":"feature_eeprom.md","lastUpdated":null}');
|
|
const _sfc_main = { name: "feature_eeprom.md" };
|
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
const _component_PluginTabsTab = resolveComponent("PluginTabsTab");
|
|
const _component_PluginTabs = resolveComponent("PluginTabs");
|
|
return openBlock(), createElementBlock("div", null, [
|
|
_cache[2] || (_cache[2] = createStaticVNode("", 28)),
|
|
createVNode(_component_PluginTabs, null, {
|
|
default: withCtx(() => [
|
|
createVNode(_component_PluginTabsTab, { label: "keyboard" }, {
|
|
default: withCtx(() => [..._cache[0] || (_cache[0] = [
|
|
createBaseVNode("p", null, [
|
|
createTextVNode("In "),
|
|
createBaseVNode("code", null, "config.h"),
|
|
createTextVNode(", define the size required, and optionally a version number:")
|
|
], -1),
|
|
createBaseVNode("table", { tabindex: "0" }, [
|
|
createBaseVNode("thead", null, [
|
|
createBaseVNode("tr", null, [
|
|
createBaseVNode("th", null, "Define"),
|
|
createBaseVNode("th", null, "Default"),
|
|
createBaseVNode("th", null, "Description")
|
|
])
|
|
]),
|
|
createBaseVNode("tbody", null, [
|
|
createBaseVNode("tr", null, [
|
|
createBaseVNode("td", null, [
|
|
createBaseVNode("code", null, "EECONFIG_KB_DATA_SIZE")
|
|
]),
|
|
createBaseVNode("td", null, [
|
|
createBaseVNode("code", null, "0")
|
|
]),
|
|
createBaseVNode("td", null, "Size in bytes for the persistent block of data")
|
|
]),
|
|
createBaseVNode("tr", null, [
|
|
createBaseVNode("td", null, [
|
|
createBaseVNode("code", null, "EECONFIG_KB_DATA_VERSION")
|
|
]),
|
|
createBaseVNode("td", null, [
|
|
createBaseVNode("code", null, "EECONFIG_KB_DATA_SIZE")
|
|
]),
|
|
createBaseVNode("td", null, "Version number that can be incremented to invalidate stored data")
|
|
])
|
|
])
|
|
], -1),
|
|
createBaseVNode("p", null, "Which exposes the following API:", -1),
|
|
createBaseVNode("div", { class: "language-c vp-adaptive-theme" }, [
|
|
createBaseVNode("button", {
|
|
title: "Copy Code",
|
|
class: "copy"
|
|
}),
|
|
createBaseVNode("span", { class: "lang" }, "c"),
|
|
createBaseVNode("pre", {
|
|
class: "shiki shiki-themes github-light github-dark vp-code",
|
|
tabindex: "0"
|
|
}, [
|
|
createBaseVNode("code", null, [
|
|
createBaseVNode("span", { class: "line" }, [
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "bool"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, " eeconfig_is_kb_datablock_valid"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "void"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ");")
|
|
]),
|
|
createTextVNode("\n"),
|
|
createBaseVNode("span", { class: "line" }, [
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "uint32_t"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, " eeconfig_read_kb_datablock"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "void"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, " *"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, "data"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ", "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "uint32_t"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, " offset"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ", "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "uint32_t"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, " length"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ") "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "__attribute__"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "((nonnull));")
|
|
]),
|
|
createTextVNode("\n"),
|
|
createBaseVNode("span", { class: "line" }, [
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "uint32_t"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, " eeconfig_update_kb_datablock"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "const"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, " void"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, " *"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, "data"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ", "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "uint32_t"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, " offset"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ", "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "uint32_t"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, " length"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ") "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "__attribute__"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "((nonnull));")
|
|
]),
|
|
createTextVNode("\n"),
|
|
createBaseVNode("span", { class: "line" }, [
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "void"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, " eeconfig_init_kb_datablock"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "void"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ");")
|
|
]),
|
|
createTextVNode("\n"),
|
|
createBaseVNode("span", { class: "line" }, [
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "# define"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, " eeconfig_read_kb_datablock_field"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, "__object"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ", "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, "__field"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ") "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "eeconfig_read_kb_datablock"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "&"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "(__object.__field), "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "offsetof"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "typeof"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "(__object), __field), "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "sizeof"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "(__object.__field))")
|
|
]),
|
|
createTextVNode("\n"),
|
|
createBaseVNode("span", { class: "line" }, [
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "# define"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, " eeconfig_update_kb_datablock_field"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, "__object"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ", "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, "__field"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ") "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "eeconfig_update_kb_datablock"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "&"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "(__object.__field), "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "offsetof"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "typeof"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "(__object), __field), "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "sizeof"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "(__object.__field))")
|
|
])
|
|
])
|
|
])
|
|
], -1)
|
|
])]),
|
|
_: 1
|
|
}),
|
|
createVNode(_component_PluginTabsTab, { label: "keymap" }, {
|
|
default: withCtx(() => [..._cache[1] || (_cache[1] = [
|
|
createBaseVNode("p", null, [
|
|
createTextVNode("In "),
|
|
createBaseVNode("code", null, "config.h"),
|
|
createTextVNode(", define the size required, and optionally a version number:")
|
|
], -1),
|
|
createBaseVNode("table", { tabindex: "0" }, [
|
|
createBaseVNode("thead", null, [
|
|
createBaseVNode("tr", null, [
|
|
createBaseVNode("th", null, "Define"),
|
|
createBaseVNode("th", null, "Default"),
|
|
createBaseVNode("th", null, "Description")
|
|
])
|
|
]),
|
|
createBaseVNode("tbody", null, [
|
|
createBaseVNode("tr", null, [
|
|
createBaseVNode("td", null, [
|
|
createBaseVNode("code", null, "EECONFIG_USER_DATA_SIZE")
|
|
]),
|
|
createBaseVNode("td", null, [
|
|
createBaseVNode("code", null, "0")
|
|
]),
|
|
createBaseVNode("td", null, "Size in bytes for the persistent block of data")
|
|
]),
|
|
createBaseVNode("tr", null, [
|
|
createBaseVNode("td", null, [
|
|
createBaseVNode("code", null, "EECONFIG_USER_DATA_VERSION")
|
|
]),
|
|
createBaseVNode("td", null, [
|
|
createBaseVNode("code", null, "EECONFIG_USER_DATA_SIZE")
|
|
]),
|
|
createBaseVNode("td", null, "Version number that can be incremented to invalidate stored data")
|
|
])
|
|
])
|
|
], -1),
|
|
createBaseVNode("p", null, "Which exposes the following API:", -1),
|
|
createBaseVNode("div", { class: "language-c vp-adaptive-theme" }, [
|
|
createBaseVNode("button", {
|
|
title: "Copy Code",
|
|
class: "copy"
|
|
}),
|
|
createBaseVNode("span", { class: "lang" }, "c"),
|
|
createBaseVNode("pre", {
|
|
class: "shiki shiki-themes github-light github-dark vp-code",
|
|
tabindex: "0"
|
|
}, [
|
|
createBaseVNode("code", null, [
|
|
createBaseVNode("span", { class: "line" }, [
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "bool"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, " eeconfig_is_user_datablock_valid"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "void"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ");")
|
|
]),
|
|
createTextVNode("\n"),
|
|
createBaseVNode("span", { class: "line" }, [
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "uint32_t"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, " eeconfig_read_user_datablock"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "void"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, " *"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, "data"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ", "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "uint32_t"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, " offset"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ", "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "uint32_t"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, " length"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ") "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "__attribute__"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "((nonnull));")
|
|
]),
|
|
createTextVNode("\n"),
|
|
createBaseVNode("span", { class: "line" }, [
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "uint32_t"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, " eeconfig_update_user_datablock"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "const"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, " void"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, " *"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, "data"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ", "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "uint32_t"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, " offset"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ", "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "uint32_t"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, " length"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ") "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "__attribute__"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "((nonnull));")
|
|
]),
|
|
createTextVNode("\n"),
|
|
createBaseVNode("span", { class: "line" }, [
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "void"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, " eeconfig_init_user_datablock"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "void"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ");")
|
|
]),
|
|
createTextVNode("\n"),
|
|
createBaseVNode("span", { class: "line" }, [
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "# define"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, " eeconfig_read_user_datablock_field"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, "__object"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ", "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, "__field"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ") "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "eeconfig_read_user_datablock"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "&"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "(__object.__field), "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "offsetof"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "typeof"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "(__object), __field), "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "sizeof"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "(__object.__field))")
|
|
]),
|
|
createTextVNode("\n"),
|
|
createBaseVNode("span", { class: "line" }, [
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "# define"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, " eeconfig_update_user_datablock_field"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, "__object"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ", "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#E36209", "--shiki-dark": "#FFAB70" } }, "__field"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, ") "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "eeconfig_update_user_datablock"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "&"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "(__object.__field), "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "offsetof"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "("),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#6F42C1", "--shiki-dark": "#B392F0" } }, "typeof"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "(__object), __field), "),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#D73A49", "--shiki-dark": "#F97583" } }, "sizeof"),
|
|
createBaseVNode("span", { style: { "--shiki-light": "#24292E", "--shiki-dark": "#E1E4E8" } }, "(__object.__field))")
|
|
])
|
|
])
|
|
])
|
|
], -1)
|
|
])]),
|
|
_: 1
|
|
})
|
|
]),
|
|
_: 1
|
|
}),
|
|
_cache[3] || (_cache[3] = createStaticVNode("", 6))
|
|
]);
|
|
}
|
|
const feature_eeprom = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
export {
|
|
__pageData,
|
|
feature_eeprom as default
|
|
};
|