コード例 #1
0
ファイル: id.c プロジェクト: apache/incubator-mynewt-core
void
id_init(void)
{
    int rc;

    rc = conf_register(&id_conf);
    SYSINIT_PANIC_ASSERT(rc == 0);

    /* Attempt to read the manufacturing image hash from the meta region. */
    id_read_mfghash();
}
コード例 #2
0
ファイル: id.c プロジェクト: a3zzat/incubator-mynewt-core
void
id_init(void)
{
    int rc;

    /* Ensure this function only gets called by sysinit. */
    SYSINIT_ASSERT_ACTIVE();

    rc = conf_register(&id_conf);
    SYSINIT_PANIC_ASSERT(rc == 0);

    /* Attempt to read the manufacturing image hash from the meta region. */
    id_read_mfghash();
}