BEHAVIOR for Interactve settings mode
<STG_STD> is a configuration BEHAVIOR with minimal configuration items.
This BEHAVIOR hooks the input/output of the Serial object and performs screen input/output in Interactive settings mode. There is no need to explicitly describe input processing in the application. Screen output from the application is suppressed during Interactive settings mode.
Enter the M key to access auxiliary functions. See the Extra Menu item at the end of this section.
Add #include <STG_STD>
as above.
In most cases, settings are read out early in the setup()
process.
The above example first registers the settings behavior with the_twelite.settings.use<STG_STD>()
.
Immediately after registration, you can make changes to the configuration behavior, such as changing the default Application ID, which is described later.
Next, call set.reload()
to actually read the data from the EEPROM and interpret it. Note that it does not read the data automatically.
set.u32appid()
, set.u8ch()
, and set.u8devid()
get the set values of Application ID, CHANNEL, and logical device ID, respectively. Here, each set value is stored in a variable.
Since the internal data structure storing the setting values is relatively complex, it is necessary to search the data in the design array until the desired setting is obtained. If you are concerned about computational complexity, store the configuration values in a separate variable.
Then, use the setting values to reflect the values of Application ID, CHANNEL, etc.
The following is the list of setting IDs (enum class E_STGSTD_SETID
) definition.
In <STG_STD>
, four typical settings and four freely available 32-bit values are defined. These are freely available to the user.
Settings are not reflected by simply reading them from STG_STD>.
Unnecessary items can be hidden.
You can change the item name and item details.
Customize all items of the configuration BEHAVIOR before .reload()
.
The application name appears on the first line of the Interactive settings mode.
Specify a string pointer. Local variables cannot be specified because we do not make copies internally.
アプリケーションID、チャネル、論理ID(LID)については、デフォルト値を変更できます。
When SETTINGS::ch_multi()
is specified, multiple CHANNEL settings are specified. When multiple settings are made, .u32chmask()
is used to read the setting values.
Default values can be changed for Application ID, CHANNEL, and Logical ID.
You can change the item name to something else. In the above example, the Japanese name is set to UTF-8, but it will not be displayed properly unless the conditions, such as terminal display, are met.
In the case of TWELITE STAGE, if the number of characters in the registered font is reduced, some characters may not be displayed. Rebuild to include the necessary strings.
This array is terminated with { 0xFF }
at the end.
The first entry is the setting ID, the second is the item name, and the third is the description to be displayed when entering the setting. You can use \r
to start a new line.
Output to serial while the setup screen is being output can cause screen corruption. To confirm that it is not the setup screen, use .is_screen_opened()
.
Removes unwanted items. .hide_items
hides unnecessary items with the item ID as a parameter (multiple parameters can be specified as variable arguments). You can check whether an item is hidden or not by .is_hidden()
.
Application ID, CHANNEL, and Logical ID (LID) cannot be deleted.
The hide setting uses internal work memory. Since the minimum memory size (32 bytes) is set, if many hidden items are set, they may not be hidden due to insufficient memory. The capacity of work memory can be specified as a compile argument like -DSIZE_SETSTD_CUST_COMMON=48
.
設定を読み込みます。すべてのカスタマイズが終わってから実行します。
The following method is called to read data.
Be sure to call .reload()
before reading.
Internally, a linear search of the structure array is performed to find the setting structure matching the setting ID, which has an overhead. Frequently referenced configuration values should be copied once to another variable for use.
You can use this object to directly reflect settings on the_twelite
and <NWK_SIMPLE>
objects.
The setting values to be reflected are as follows. Items hidden by .hide_items()
are not reflected.
You may specify item IDs with .hide_items()
and so on. This item ID is defined in enum class E_STGSTD_SETID
.
Enter the M key to access additional menus.
CONFIG : returns to the setup screen
EEPROM UTIL : This menu is used to perform EEPROM maintenance
H/W UTIL: This menu allows you to check hardware status
Reads or deletes a sector. To read all or delete all, enter the three letters "YES" in uppercase.
Setting ID | Contents |
---|---|
method | content |
---|---|
Target | Item ID | Contents |
---|---|---|
E_STGSTD_SETID:: | Contents |
---|---|
APPID
Application ID
LOGICALID
Logical device ID (8bit)
CHANNEL
CHANNEL
CHANNELS_3
Channel (up to 3 channels)
POWER_N_RETRY
Outputs and retry counts
OPTBITS
Option 1
OPT_DWORD2
Option 2
OPT_N_RETRY
Output and Retry Count
OPT_DWORD3
Option 3
ENC_MODE
Encryption Mode
ENC_KEY_STRING
Encryption key (string input)
uint32_t u32appid()
Application ID
uint8_t u8devid()
logical device ID
uint8_t u8ch()
configuration channel (11..26)
uint32_t u32chmask()
CHANNEL setting mask (specified by bitmask, if 13, set bit to 1UL << 13)
uint8_t u8power()
output setting (0..3)
uint8_t u8retry()
Number of retries.
uint32_t u32opt1()
Option 1
uint32_t u32opt2()
option2
Option1
Option2
Option3
uint32_t u32opt4()
uint8_t u8encmode()
encryption mode (0: none 1: enable 2: enable, also display plaintext packets)
const uint8_t * u8enckeystr()
get encryption key
the_twelite
APPID
reflected in TWENET::appid(value)
.
CHANNEL
This is reflected in `TWENET::channel(value)
.
* Not reflected when SETTINGS::ch_multi()
is specified
CHANNELS_3
Setting by TWENET::chmask(value)
.
* Only when SETTINGS::ch_multi()
is specified, it is reflected as a CHANNEL mask.
POWER_N_RETRY
Setting by TWENET::tx_power(value)
and TWENET::mac_retry_count(value)
.
Note: The retry settings with <NWK_SIMPLE>
also refer to the same value.
<NWK_SIMPLE>
LOGICALID
Set by NWK_SIMPLE::logical_id(LID)
.
POWER_N_RETRY
Set by NWK_SIMPLE::repeat_max(LID)
.
APPID
Application ID
LOGICALID
Logical ID (0..100)
CHANNEL
CHANNEL
CHANNELS_3
CHANNEL(specify multiple)
POWER_N_RETRY
output and retry settings
OPTBITS
option bits
UARTBAUD
Baud rate setting for UART
OPT_DWORD2
Option bits 2
OPT_DWORD2
Optional bits 2
OPT_DWORD4
Option bit 4
ENC_MODE
Encryption Mode
ENC_KEY_STRING
encryption key