Home
last modified time | relevance | path

Searched refs:scl (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-2.7.6/examples/peripherals/i2c/i2c_tools/main/
Dcmd_i2ctools.c69 struct arg_int *scl; member
94 i2c_gpio_scl = i2cconfig_args.scl->ival[0]; in do_i2cconfig_cmd()
103 i2cconfig_args.scl = arg_int1(NULL, "scl", "<gpio>", "Set the gpio for I2C SCL"); in register_i2cconfig()
/hal_espressif-2.7.6/components/fatfs/src/
Dff.c1299 DWORD val, scl, ctr; in find_bitmap() local
1304 scl = val = clst; ctr = 0; in find_bitmap()
1315 if (++ctr == ncl) return scl + 2; /* Check if run length is sufficient for required */ in find_bitmap()
1317 scl = val; ctr = 0; /* Encountered a cluster in-use, restart to scan */ in find_bitmap()
1426 DWORD scl = clst, ecl = clst; in remove_chain() local
1460 … res = change_bitmap(fs, scl, ecl - scl + 1, 0); /* Mark the cluster block 'free' on the bitmap */ in remove_chain()
1465 rt[0] = clst2sect(fs, scl); /* Start of data area freed */ in remove_chain()
1469 scl = ecl = nxt; in remove_chain()
1516 DWORD cs, ncl, scl; in create_chain() local
1522 scl = fs->last_clst; /* Suggested cluster to start to find */ in create_chain()
[all …]
/hal_espressif-2.7.6/examples/peripherals/i2c/i2c_tools/
DREADME.md72 i2cconfig [--port=<0|1>] [--freq=<Hz>] --sda=<gpio> --scl=<gpio>
77 --scl=<gpio> Set the gpio for I2C SCL
134 esp32> i2cconfig --port=0 --sda=18 --scl=19 --freq=100000
138 * `--sda` and `--scl` options to specify the gpio number used by I2C bus, here we choose GPIO18 as …