English | 简体中文 | 繁體中文 | 日本語 | Deutsch | 한국어
NEC紅外傳輸協定使用消息比特的脈衝距離編碼,每個脈衝串的長度為562.5 μ s,載波頻率為38kHz(26.3 μ s)。 邏輯比特的傳輸管道如下: 邏輯“0”–562.5 μ s脈衝,然後是562.5 μ s間隔,總傳輸時間為1.125ms; 邏輯“1”–562.5 μ s的脈衝,然後是1.6875ms間隔,總傳輸時間為2.25ms。 當按下遙控器上的鍵時,傳輸的資訊按順序包括以下內容:
- 9ms的前導脈衝串(用於邏輯數據比特的脈衝串長度的16倍)。
- 4.5ms的間隔。
- 用於接收設備的8比特地址。
- 地址的8比特邏輯逆。
- 8比特命令。
- 該命令的8比特邏輯逆。
- 最後的562.5 μ s脈衝,表示消息傳輸結束。
LibDriver IR_ REMOTE是LibDriver推出的IR_ REMOTE全功能驅動,該驅動提供NEC紅外遙控解碼功能並且它符合MISRA標準。
/src目錄包含了LibDriver IR_REMOTE的源文件。
/interface目錄包含了LibDriver IR_REMOTE與平台無關的GPIO總線模板。
/test目錄包含了LibDriver IR_REMOTE驅動測試程序,該程序可以簡單的測試芯片必要功能。
/example目錄包含了LibDriver IR_REMOTE編程範例。
/doc目錄包含了LibDriver IR_REMOTE離線文檔。
/datasheet目錄包含了IR_REMOTE數據手冊。
/project目錄包含了常用Linux與單片機開發板的工程樣例。所有工程均採用shell腳本作為調試方法,詳細內容可參考每個工程裡面的README.md。
/misra目錄包含了LibDriver MISRA程式碼掃描結果。
參考/interface目錄下與平台無關的GPIO總線模板,完成指定平台的GPIO總線驅動。
將/src目錄,您使用平臺的介面驅動和您開發的驅動加入工程,如果您想要使用默認的範例驅動,可以將/example目錄加入您的工程。
您可以參考/example目錄下的程式設計範例完成適合您的驅動,如果您想要使用默認的程式設計範例,以下是它們的使用方法。
#include "driver_ir_remote_basic.h"
volatile uint8_t g_flag;
uint8_t (*g_gpio_irq)(void) = NULL;
uint8_t res;
uint32_t i;
uint16_t timeout;
static void a_receive_callback(ir_remote_t *data)
{
switch (data->status)
{
case IR_REMOTE_STATUS_OK :
{
ir_remote_interface_debug_print("ir_remote: irq ok.\n");
ir_remote_interface_debug_print("ir_remote: add is 0x%02X and cmd is 0x%02X.\n", data->address, data->command);
g_flag = 1;
break;
}
case IR_REMOTE_STATUS_REPEAT :
{
break;
}
case IR_REMOTE_STATUS_ADDR_ERR :
{
ir_remote_interface_debug_print("ir_remote: irq addr error.\n");
break;
}
case IR_REMOTE_STATUS_CMD_ERR :
{
ir_remote_interface_debug_print("ir_remote: irq cmd error.\n");
break;
}
case IR_REMOTE_STATUS_FRAME_INVALID :
{
ir_remote_interface_debug_print("ir_remote: irq frame invalid.\n");
break;
}
default :
{
ir_remote_interface_debug_print("ir_remote: irq unknown status.\n");
break;
}
}
}
...
/* gpio init */
res = gpio_interrupt_init();
if (res != 0)
{
return 1;
}
/* set the irq */
g_gpio_irq = ir_remote_basic_irq_handler;
...
/* basic init */
res = ir_remote_basic_init(a_receive_callback);
if (res != 0)
{
(void)gpio_interrupt_deinit();
g_gpio_irq = NULL;
}
...
/* loop */
for (i = 0; i < times; i++)
{
/* output */
ir_remote_interface_debug_print("%d/%d.\n", i + 1, times);
/* 5s timeout */
timeout = 500;
/* init 0 */
g_flag = 0;
/* check timeout */
while (timeout != 0)
{
/* check the flag */
if (g_flag != 0)
{
break;
}
/* timeout -- */
timeout--;
/* delay 10ms */
ir_remote_interface_delay_ms(10);
}
/* check the timeout */
if (timeout == 0)
{
/* receive timeout */
ir_remote_interface_debug_print("ir_remote: receive timeout.\n");
(void)ir_remote_basic_deinit();
(void)gpio_interrupt_deinit();
g_gpio_irq = NULL;
return 1;
}
....
}
...
/* basic deinit */
(void)ir_remote_basic_deinit();
/* gpio deinit */
(void)gpio_interrupt_deinit();
g_gpio_irq = NULL;
return 0;
在線文檔: https://www.libdriver.com/docs/ir_remote/index.html。
離線文檔: /doc/html/index.html。
請參攷CONTRIBUTING.md。
版權 (c) 2015 - 現在 LibDriver 版權所有
MIT 許可證(MIT)
特此免費授予任何獲得本軟件副本和相關文檔文件(下稱“軟件”)的人不受限制地處置該軟件的權利,包括不受限制地使用、複製、修改、合併、發布、分發、轉授許可和/或出售該軟件副本,以及再授權被配發了本軟件的人如上的權利,須在下列條件下:
上述版權聲明和本許可聲明應包含在該軟件的所有副本或實質成分中。
本軟件是“如此”提供的,沒有任何形式的明示或暗示的保證,包括但不限於對適銷性、特定用途的適用性和不侵權的保證。在任何情況下,作者或版權持有人都不對任何索賠、損害或其他責任負責,無論這些追責來自合同、侵權或其它行為中,還是產生於、源於或有關於本軟件以及本軟件的使用或其它處置。