/nrf52832-nimble/rt-thread/components/drivers/mtd/ |
H A D | mtdnand.c | 19 static uint8_t *nand_fill_oob(rt_nand_t *chip, uint8_t *oob, size_t len, struct mtd_io_desc *desc) in nand_fill_oob() argument 27 rt_memcpy(chip->oob_poi + desc->ooboffs, oob, len); in nand_fill_oob() 28 return oob + len; in nand_fill_oob() 39 rt_memcpy(chip->oob_poi + boffs, oob, bytes); in nand_fill_oob() 40 oob += bytes; in nand_fill_oob() 42 return oob; in nand_fill_oob() 49 static uint8_t *nand_transfer_oob(rt_nand_t *chip, uint8_t *oob, struct mtd_io_desc *desc, size_t l… in nand_transfer_oob() argument 55 rt_memcpy(oob, chip->oob_poi + desc->ooboffs, len); in nand_transfer_oob() 56 return oob + len; in nand_transfer_oob() 84 rt_memcpy(oob, chip->oob_poi + boffs, bytes); in nand_transfer_oob() [all …]
|
H A D | mtd_nand.c | 232 /* prepare oob data */ in mtd_nand_write()
|
/nrf52832-nimble/rt-thread/components/drivers/include/drivers/ |
H A D | mtd.h | 25 * @MTD_OPM_PLACE_OOB: OOB data are placed at the given offset (default) 26 * @MTD_OPM_AUTO_OOB: OOB data are automatically placed at the free areas 67 uint8_t ooblen; /* number of oob bytes to write/read */ 68 uint8_t oobretlen; /* number of oob bytes written/read */ 69 uint8_t ooboffs; /* offset in the oob area */ 74 uint8_t *datbuf; /* if NULL only oob are read/written */
|
H A D | mtdnand.h | 95 …int(*isbad)(rt_nand_t *nand, uint32_t blk); /* if NULL OOB[0] used as bad mark(not 0xff is bad) … 96 int(*markbad)(rt_nand_t *nand, uint32_t blk); /* if NULL OOB[0] used as bad mark(set to 0x00) */
|
H A D | mtd_nand.h | 38 rt_uint16_t oob_free; /* the free area in oob that flash driver not use */
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/pts/ |
H A D | pts-sm.txt | 52 SM/MAS/OOB/BV-01-C N/A 53 SM/MAS/OOB/BV-03-C N/A 54 SM/MAS/OOB/BV-05-C PASS b set sm_data io_capabilities=1 59 SM/MAS/OOB/BV-07-C PASS b conn peer_addr=<addr> 61 SM/MAS/OOB/BV-09-C N/A 62 SM/MAS/OOB/BI-01-C N/A 114 SM/SLA/OOB/BV-02-C N/A 115 SM/SLA/OOB/BV-04-C N/A 116 SM/SLA/OOB/BV-06-C PASS b set sm_data io_capabilities=1 120 SM/SLA/OOB/BV-08-C PASS b adv [all …]
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/include/mesh/ |
H A D | main.h | 73 /** Static OOB value */ 75 /** Static OOB value length */ 78 /** Maximum size of Output OOB supported */ 80 /** Supported Output OOB Actions */ 83 /* Maximum size of Input OOB supported */ 85 /** Supported Input OOB Actions */ 167 /** @brief Provide provisioning input OOB string. 178 /** @brief Provide provisioning input OOB number.
|
/nrf52832-nimble/packages/NimBLE-latest/apps/blemesh_models_example_2/src/ |
H A D | ble_mesh.c | 19 printk("OOB Number: %lu\n", number); in output_number() 25 printk("OOB String: %s\n", str); in output_string()
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/src/ |
H A D | prov.c | 512 /*PTS OOB*/ in prov_invite() 515 /* Static OOB Type */ in prov_invite() 518 /* Output OOB Size */ in prov_invite() 521 /* Output OOB Action */ in prov_invite() 524 /* Input OOB Size */ in prov_invite() 527 /* Input OOB Action */ in prov_invite() 554 BT_INFO("Static OOB Type: 0x%02x", data[4]); in prov_capabilities() 555 BT_INFO("Output OOB Size: %u", data[5]); in prov_capabilities() 558 BT_INFO("Output OOB Action: 0x%04x", output_action); in prov_capabilities() 560 BT_INFO("Input OOB Size: %u", data[8]); in prov_capabilities() [all …]
|
H A D | shell.c | 338 printk("OOB Number: %lu\n", number); in output_number() 344 printk("OOB String: %s\n", str); in output_string() 497 printk("Static OOB value set (length %u)\n", in cmd_static_oob() 500 printk("Static OOB value cleared\n"); in cmd_static_oob() 2405 { "static-oob", cmd_static_oob, &cmd_static_oob_help },
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/mesh/ |
H A D | syscfg.yml | 443 Supported Output OOB Actions 454 Output OOB size 459 Supported Input OOB Actions 469 Input OOB size
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/tools/ |
H A D | log2smtest.rb | 396 when /^b passkey conn=\d+ action=1 oob=(\S+)/ 398 passkey_info[:oob] = token_string_to_bytes($1, ':') 570 # OOB 612 if passkey_info[:oob] != nil 614 #{bytes_to_arr(passkey_info[:oob], "oob", 16)}
|
/nrf52832-nimble/packages/NimBLE-latest/apps/blemesh_models_example_1/src/ |
H A D | main.c | 410 BT_INFO("OOB Number %u", number); in output_number() 416 BT_INFO("OOB String %s", str); in output_string() 565 /* Disable OOB security for SILabs Android app */
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/include/host/ |
H A D | ble_sm.h | 93 uint8_t oob[16]; member
|
H A D | ble_hs.h | 206 /** @brief Security Manager OOB flag
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/include/linux/ |
H A D | jffs2_fs_sb.h | 43 (i.e. zero for OOB CLEANMARKER */
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/include/lwip/ |
H A D | sockets.h | 87 #define SO_OOBINLINE 0x0100 /* Unimplemented: leave received OOB data in line */ 264 #define SIOCATMARK _IOR('s', 7, unsigned long) /* at oob mark? */
|
/nrf52832-nimble/rt-thread/components/net/sal_socket/include/ |
H A D | sal_socket.h | 53 #define SO_OOBINLINE 0x0100 /* Unimplemented: leave received OOB data in line */
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.0.2/src/include/lwip/ |
H A D | sockets.h | 184 #define SO_OOBINLINE 0x0100 /* Unimplemented: leave received OOB data in line */ 381 #define SIOCATMARK _IOR('s', 7, unsigned long) /* at oob mark? */
|
/nrf52832-nimble/rt-thread/components/net/lwip-1.4.1/src/include/ipv4/lwip/ |
H A D | ip.h | 105 /*#define SOF_OOBINLINE 0x0100U Unimplemented: leave received OOB data in line */
|
/nrf52832-nimble/rt-thread/components/net/lwip-2.1.0/src/include/lwip/ |
H A D | sockets.h | 209 #define SO_OOBINLINE 0x0100 /* Unimplemented: leave received OOB data in line */ 430 #define SIOCATMARK _IOR('s', 7, unsigned long) /* at oob mark? */
|
/nrf52832-nimble/packages/NimBLE-latest/apps/blemesh/src/ |
H A D | main.c | 385 console_printf("OOB Number: %lu\n", number); in output_number()
|
/nrf52832-nimble/packages/NimBLE-latest/nimble/host/src/ |
H A D | ble_sm_priv.h | 63 * | OOB data flag | 1 |
|
/nrf52832-nimble/rt-thread/components/dfs/filesystems/jffs2/src/ |
H A D | erase.c | 368 /* Cleanmarker in oob area or no cleanmarker at all ? */ in jffs2_mark_erased_block()
|
/nrf52832-nimble/packages/NimBLE-latest/apps/btshell/src/ |
H A D | cmd.c | 2547 rc = parse_arg_byte_stream_exact_length("oob", pk.oob, 16); in cmd_auth_passkey() 2549 console_printf("invalid 'oob' parameter\n"); in cmd_auth_passkey() 2596 {"oob", "usage: =[XX:XX...], len=16 octets"},
|