都是同时写auth_charge 这个key,最后通过kvdb show,发现有两个auth_charge的key,为什么呢?
rt_bool_t auth_charge(void){
char _auth_charge[1];
rt_err_t res = get_env("auth_charge", _auth_charge);
LOG_D("--------------> auth charge:%s, %d, %d", _auth_charge, res, strcmp(_auth_charge, "1"));
if(res == RT_FALSE || RT_EOK == strcmp(_auth_charge, "1")){
return RT_TRUE;
}
return RT_FALSE;
}
msh />kvdb set auth_charge 0
set the KV 'auth_charge', value is: 0
msh />kvdb show
Read data success. The KV data is:
----------------------------------
__ver_num__=blob @0x00000033 4bytes
sn=22-6B-60-1D
tariff=blob @0x000000A1 600bytes
no_check_pe=1
auth_charge=0
auth_charge=0
mode: next generation
size: 1783/61440 bytes.
msh />