3 * This file is part of the libCEC(R) library.
5 * libCEC(R) is Copyright (C) 2011-2012 Pulse-Eight Limited. All rights reserved.
6 * libCEC(R) is an original work, containing original code.
8 * libCEC(R) is a trademark of Pulse-Eight Limited.
10 * This program is dual-licensed; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 * Alternatively, you can license this library under a commercial license,
26 * please contact Pulse-Eight Licensing for more information.
28 * For more information contact:
29 * Pulse-Eight Licensing <license@pulse-eight.com>
30 * http://www.pulse-eight.com/
31 * http://www.pulse-eight.net/
34 #include "lib/platform/threads/mutex.h"
35 #include "USBCECAdapterMessage.h"
39 class CUSBCECAdapterCommunication
;
41 class CUSBCECAdapterCommands
44 CUSBCECAdapterCommands(CUSBCECAdapterCommunication
*comm
);
47 * @brief Request the firmware version from the adapter.
48 * @return The firmware version, or 1 (default) if it couldn't be retrieved.
50 uint16_t RequestFirmwareVersion(void);
53 * @return The firmware version of the adapter, retrieved when the connection is opened.
55 uint16_t GetFirmwareVersion(void) const { return m_persistedConfiguration
.iFirmwareVersion
; };
58 * @brief Update the current configuration in the adapter. Does not do an eeprom update.
59 * @attention Not all settings are persisted at this time.
60 * @param configuration The configuration to persist.
61 * @return True when something changed, false otherwise.
63 bool PersistConfiguration(const libcec_configuration
&configuration
);
66 * @brief Get the persisted configuration from the EEPROM.
67 * @param configuration The persisted configuration.
68 * @return True when retrieved, false otherwise.
70 bool GetConfiguration(libcec_configuration
&configuration
);
73 * @brief Send a ping command to the adapter.
74 * @return True when acked by the adapter, false otherwise.
76 bool PingAdapter(void);
79 * @brief Change the ackmask of the adapter.
80 * @param iMask The new mask.
81 * @return True when the change was acked by the adapter, false otherwise.
83 bool SetAckMask(uint16_t iMask
);
86 * @brief Put the adapter in bootloader mode.
87 * @attention The connection needs to be closed after this call, since the adapter will no longer be available.
88 * @return True when the command was sent, false otherwise.
90 bool StartBootloader(void);
93 * @brief Change the current CEC line timeout.
94 * @param iTimeout The new timeout.
95 * @return True when the change was acked by the adapter, false otherwise.
97 bool SetLineTimeout(uint8_t iTimeout
);
100 * @brief Put the adapter in controlled or autonomous mode.
101 * @param controlled True to switch to controlled mode, false to switch to auto mode.
102 * @return True when acked by the controller, false otherwise.
104 bool SetControlledMode(bool controlled
);
107 * @brief Request the firmware build date from the device.
108 * @return The build date in seconds since epoch, or 0 when no (valid) reply was received.
110 uint32_t RequestBuildDate(void);
113 * @return The persisted build date.
115 uint32_t GetPersistedBuildDate(void) const { return m_iBuildDate
; };
118 * @brief Request the adapter type.
121 p8_cec_adapter_type
RequestAdapterType(void);
124 * @return The persisted build date.
126 p8_cec_adapter_type
GetPersistedAdapterType(void) const { return m_adapterType
; };
129 * @brief Persist the current settings in the EEPROM
130 * @return True when persisted, false otherwise.
132 bool WriteEEPROM(void);
136 * @brief Reads all settings from the eeprom.
137 * @return True when read, false otherwise.
139 bool RequestSettings(void);
142 * @brief Request a setting value from the adapter.
143 * @param msgCode The setting to retrieve.
144 * @return The response from the adapter.
146 cec_datapacket
RequestSetting(cec_adapter_messagecode msgCode
);
149 * @brief Change the value of the "auto enabled" setting.
150 * @param enabled The new value.
151 * @return True when changed and set, false otherwise.
153 bool SetSettingAutoEnabled(bool enabled
);
156 * @brief Request the value of the "auto enabled" setting from the adapter.
157 * @return True when retrieved, false otherwise.
159 bool RequestSettingAutoEnabled(void);
162 * @brief Change the value of the "device type" setting, used when the device is in autonomous mode.
163 * @param type The new value.
164 * @return True when changed and set, false otherwise.
166 bool SetSettingDeviceType(cec_device_type type
);
169 * @brief Request the value of the "device type" setting from the adapter.
170 * @return True when retrieved, false otherwise.
172 bool RequestSettingDeviceType(void);
175 * @brief Change the value of the "default logical address" setting, used when the device is in autonomous mode.
176 * @param address The new value.
177 * @return True when changed and set, false otherwise.
179 bool SetSettingDefaultLogicalAddress(cec_logical_address address
);
182 * @brief Request the value of the "default logical address" setting from the adapter.
183 * @return True when retrieved, false otherwise.
185 bool RequestSettingDefaultLogicalAddress(void);
188 * @brief Change the value of the "logical address mask" setting, used when the device is in autonomous mode.
189 * @param iMask The new value.
190 * @return True when changed and set, false otherwise.
192 bool SetSettingLogicalAddressMask(uint16_t iMask
);
195 * @brief Request the value of the "logical address mask" setting from the adapter.
196 * @return True when retrieved, false otherwise.
198 bool RequestSettingLogicalAddressMask(void);
201 * @brief Change the value of the "physical address" setting, used when the device is in autonomous mode.
202 * @param iPhysicalAddress The new value.
203 * @return True when changed and set, false otherwise.
205 bool SetSettingPhysicalAddress(uint16_t iPhysicalAddress
);
208 * @brief Request the value of the "physical address" setting from the adapter.
209 * @return True when retrieved, false otherwise.
211 bool RequestSettingPhysicalAddress(void);
214 * @brief Change the value of the "CEC version" setting, used when the device is in autonomous mode.
215 * @param version The new value.
216 * @return True when changed and set, false otherwise.
218 bool SetSettingCECVersion(cec_version version
);
221 * @brief Request the value of the "CEC version" setting from the adapter.
222 * @return True when retrieved, false otherwise.
224 bool RequestSettingCECVersion(void);
227 * @brief Change the value of the "OSD name" setting, used when the device is in autonomous mode.
228 * @param strOSDName The new value.
229 * @return True when set, false otherwise.
231 bool SetSettingOSDName(const char *strOSDName
);
234 * @brief Request the value of the "OSD name" setting from the adapter.
235 * @return True when retrieved, false otherwise.
237 bool RequestSettingOSDName(void);
239 CUSBCECAdapterCommunication
*m_comm
; /**< the communication handler */
240 bool m_bSettingsRetrieved
; /**< true when the settings were read from the eeprom, false otherwise */
241 bool m_bSettingAutoEnabled
; /**< the value of the auto-enabled setting */
242 cec_version m_settingCecVersion
; /**< the value of the cec version setting */
243 uint16_t m_iSettingLAMask
; /**< the value of the LA mask setting */
244 bool m_bNeedsWrite
; /**< true when we sent changed settings to the adapter that have not been persisted */
245 libcec_configuration m_persistedConfiguration
; /**< the configuration that is persisted in the eeprom */
246 uint32_t m_iBuildDate
; /**< the build date of the firmware */
247 bool m_bControlledMode
; /**< current value of the controlled mode feature */
248 p8_cec_adapter_type m_adapterType
; /**< the type of the adapter that we're connected to */
249 PLATFORM::CMutex m_mutex
;