mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +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
|
||||
* @note This is used by btm-sysmodule.
|
||||
* @param[in] flag0 Unknown flag.
|
||||
* @param[in] flag1 Unknown flag.
|
||||
* @param[in] inquiry_scan Controls Inquiry Scan, whether the device can be discovered during Inquiry.
|
||||
* @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
|
||||
|
@ -367,8 +367,8 @@ Result btdrvEnableRadio(bool flag) {
|
||||
return _btdrvCmdInBoolNoOut(flag, 34);
|
||||
}
|
||||
|
||||
Result btdrvSetVisibility(bool flag0, bool flag1) {
|
||||
return _btdrvCmdTwoInBoolsNoOut(flag0, flag1, 35);
|
||||
Result btdrvSetVisibility(bool inquiry_scan, bool page_scan) {
|
||||
return _btdrvCmdTwoInBoolsNoOut(inquiry_scan, page_scan, 35);
|
||||
}
|
||||
|
||||
Result btdrvEnableTbfcScan(bool flag) {
|
||||
|
Loading…
Reference in New Issue
Block a user