關掉指紋不是關掉 spi**_iface_clk和spi**_icore_clk.這兩個頻率是tz的如果把它關掉,ta沒法執行。
在kernel中給fpc配置了clk和power。所以要避免fpc的干擾,只需要disable掉irq。就行。
1、在probe中初始化irq:fpc1020->irq=gpio_to_irq(fpc1020->irq_gpio);//?只是在irq上加了偏移量嗎?
2、讀取fpc1020->irq。
3、在需要關閉指紋的地方disable(fpc1020_irq);即可。
disable(int irq);
enable(int irq);沒有返回值。
disable_irq_wake(int irq);
和enable_irq_wake(int irq);有乙個int的返回值。
2015.8.13
js 實現複製文字內容,可以在其他地方進行貼上
在專案開發過程中會遇到複製某部分的文字內容,然後可以在其他地方通過右鍵或者 ctrl v 進行貼上的需求,接下來看看如何通過 js 實現 獲取需要複製文字的節點 var copydom document.queryselector id 建立乙個 range 物件 var range documen...
點選頁面其他地方隱藏彈窗
doctype html html head meta charset utf 8 title title script src js jquery 2.1.3.min.js script style tip style head body button 點我 button div class ti...
python 怎樣匯入其他地方的python模組
sys.path是python的搜尋模組的路徑集,是乙個list。1 臨時新增,在乙個shell視窗中 py檔案存放在f python資料夾下 使用下面方法將路徑永久新增到sys.path 2 使用pth檔案永久新增 使用pth檔案,在 site packages 檔案中建立 pth檔案,將模組的路...