mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 20:42:44 +02:00
btdrv: Updated param names + docs.
This commit is contained in:
parent
e48f1c339f
commit
7751df9356
@ -504,10 +504,10 @@ Result btdrvEnableRadio(bool flag);
|
|||||||
/**
|
/**
|
||||||
* @brief SetVisibility
|
* @brief SetVisibility
|
||||||
* @note This is used by btm-sysmodule.
|
* @note This is used by btm-sysmodule.
|
||||||
* @param[in] flag0 Unknown flag.
|
* @param[in] inquiry_scan Controls Inquiry Scan, whether the device can be discovered during Inquiry.
|
||||||
* @param[in] flag1 Unknown flag.
|
* @param[in] page_scan Controls Page Scan, whether the device accepts connections.
|
||||||
*/
|
*/
|
||||||
Result btdrvSetVisibility(bool flag0, bool flag1);
|
Result btdrvSetVisibility(bool inquiry_scan, bool page_scan);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief EnableTbfcScan
|
* @brief EnableTbfcScan
|
||||||
|
@ -367,8 +367,8 @@ Result btdrvEnableRadio(bool flag) {
|
|||||||
return _btdrvCmdInBoolNoOut(flag, 34);
|
return _btdrvCmdInBoolNoOut(flag, 34);
|
||||||
}
|
}
|
||||||
|
|
||||||
Result btdrvSetVisibility(bool flag0, bool flag1) {
|
Result btdrvSetVisibility(bool inquiry_scan, bool page_scan) {
|
||||||
return _btdrvCmdTwoInBoolsNoOut(flag0, flag1, 35);
|
return _btdrvCmdTwoInBoolsNoOut(inquiry_scan, page_scan, 35);
|
||||||
}
|
}
|
||||||
|
|
||||||
Result btdrvEnableTbfcScan(bool flag) {
|
Result btdrvEnableTbfcScan(bool flag) {
|
||||||
|
Loading…
Reference in New Issue
Block a user