摘要:
[ cut here ] WARNING: CPU: 0 PID: 0 at kernel/irq/handle.c:146 handle_irq_event_percpu+0x70/)irq 40 handler gpio_keys_gpio_isr+0x0/0x80 enabled interr 阅读全文
摘要:
AT91与SAM-BA的连接是由于芯片内有一段固化的代码运行起来后才会检测到目标板并建立连接。 假设现在你烧写了Bootstrap进去,芯片上电后发现有可运行的代码,从而就不执行片内固化的那个代码。因此,就无法与SAM-BA建立连接。解决方法主要有以下几个方面: 1.在开发板上已经预留了处理这个问题 阅读全文
摘要:
给定的格式FORMAT 控制着输出,解释序列如下: %% 一个文字的 % %a 当前locale 的星期名缩写(例如: 日,代表星期日) %A 当前locale 的星期名全称 (如:星期日) %b 当前locale 的月名缩写 (如:一,代表一月) %B 当前locale 的月名全称 (如:一月) 阅读全文
摘要:
duart /dev/ttyS0 /dev/ttyS0 usart1 /dev/ttyS2 /dev/ttyS1 usart2 /dev/ttyS3 /dev/ttyS2 usart0 /dev/ttyS1 /dev/ttyS3 uart1 /dev/ttyS6 /dev/ttyS4 usart3 阅读全文
摘要:
调试参考 http://www.docin.com/p-872951702.html AT91SAM9x5 EK Board SoC Features Kit Information Kit Overview Access the console Access the console on DBGU 阅读全文
摘要:
步骤1: make menuconfig配置内核, 开启PWM输出功能. [cpp] view plain copy Device Drivers > Misc devices > <*>Atmel AT32/AT91 PWM support [*] LEDSupport > <*> LED Sup 阅读全文
摘要:
#include <unistd.h> #include <stdio.h> #include <fcntl.h> #include <linux/fb.h> #include <sys/mman.h> int main () { int fp=0; struct fb_var_screeninfo 阅读全文
摘要:
/dev/spidev0.0对应ESAM, /dev/spidev1.2对应ATT7022E [cpp] view plain copy #include <stdint.h> #include <unistd.h> #include <stdio.h> #include <stdlib.h> #i 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> #include <fcntl.h> #include <unistd.h> #include <math.h> char iiotype[16][32] = { 'in_voltage1_raw', 'in_voltag 阅读全文
摘要:
1.配置内核 打开I2C功能: 打开杂项设备,该选项打开后,EEPROM也就打开了。 2. 修改代码 修改文件: linux/arch/arm/mach-s3c2440/mach-smdk2440.c 增加如下代码片段: [cpp] view plain copy #include <linux/i 阅读全文