# fsCameraEnableFlag The `fsCameraEnableFlag` function can be used to enable camera specific features, but only if the camera has been correctly acquired.   ##### Syntax ``` wasm bool fsCameraEnableFlag( int flag ); ```   ##### Members {{< table-wrapper >}} | Parameters | Description | |------------|-------------------------------------------------------------------------------------------------------------------------------------------------------| | `flag` | This is one or more of the `FsCameraFlag` enum members, merged using bitwise "or" to create a bitmask which flags specific camera options as enabled. | {{< /table-wrapper >}}   ##### Return Values The function returns `false` if it was not possible to send the request. If the request was sent but failed, the specified callback will be invoked with an appropriate error code.   ##### Remarks N/A