虫虫首页|资源下载|资源专辑|精品软件
登录|注册

GCCAVR

  • 一个最新的uCOS-II的GCCAVR移植版本.zip

    一个最新的uCOS-II的GCCAVR移植版本.zip

    标签: uCOS-II GCCAVR zip 移植

    上传时间: 2013-06-13

    上传用户:qiao8960

  • USB Boot Loader for ATMega 8 编译器:GCCAVR/ICCAVR

    USB Boot Loader for ATMega 8 编译器:GCCAVR/ICCAVR

    标签: ATMega Loader GCCAVR ICCAVR

    上传时间: 2015-09-03

    上传用户:lunshaomo

  • GCCAVR书籍内容包含gcc应用安装及对avr下载说明和电路的配置

    GCCAVR书籍内容包含gcc应用安装及对avr下载说明和电路的配置

    标签: GCCAVR gcc avr 书籍

    上传时间: 2015-11-11

    上传用户:璇珠官人

  • uCOS-II V2.8X在GCCAVR环境下的移植代码,针对处理器为atmega128.

    uCOS-II V2.8X在GCCAVR环境下的移植代码,针对处理器为atmega128.

    标签: uCOS-II GCCAVR atmega 2.8

    上传时间: 2014-01-03

    上传用户:ukuk

  • 一个最新的uCOS-II的GCCAVR移植版本 可移植于mega128的ucos 采用winavr编程

    一个最新的uCOS-II的GCCAVR移植版本 可移植于mega128的ucos 采用winavr编程

    标签: uCOS-II GCCAVR winavr mega

    上传时间: 2013-12-25

    上传用户:阳光少年2016

  • GCCAVR环境下的测试程序

    GCCAVR环境下的测试程序,可供参考。最新版的winavr编译。

    标签: GCCAVR 环境 测试程序

    上传时间: 2016-09-29

    上传用户:1051290259

  • 利用GCCAVR读写EEPROM源代码

    利用GCCAVR读写EEPROM源代码,经过本人在开发板上测试过,绝对能用。

    标签: GCCAVR EEPROM 读写 源代码

    上传时间: 2017-03-04

    上传用户:1159797854

  • 基于AVRStudio和GCCAVR的ATxmega32A4的编程及调试

    基于AVRStudio和GCCAVR的ATxmega32A4的编程及调试          

    标签: avrstudio GCCAVR atxmega32a4 编程 调试

    上传时间: 2022-07-20

    上传用户:qingfengchizhu

  • 16 16点阵显示汉字原理及显示程序

    16 16点阵显示汉字原理及显示程序 #include "config.h" #define                DOTLED_LINE_PORT        PORTB #define                DOTLED_LINE_DDR                DDRB #define                DOTLED_LINE_PIN                PINB #define                DOTLED_LINE_SCKT        PB1 #define                DOTLED_LINE_SCKH        PB5 #define                DOTLED_LINE_SDA                PB3 #define                DOTLED_ROW_PORT                PORTC #define                DOTLED_ROW_DDR                DDRC #define                DOTLED_ROW_PIN                PINC #define                DOTLED_ROW_A0                PC0 #define                DOTLED_ROW_A1                PC1 #define                DOTLED_ROW_A2                PC2 #define                DOTLED_ROW_A3                PC3 #define                DOTLED_ROW_E                PC4 uint8 font[] = { /*--  调入了一幅图像:这是您新建的图像  --*/ /*--  宽度x高度=16x16  --*/ 0x00,0x00,0x00,0x00,0x08,0x38,0x18,0x44,0x08,0x44,0x08,0x04,0x08,0x08,0x08,0x10, 0x08,0x20,0x08,0x40,0x08,0x40,0x08,0x40,0x3E,0x7C,0x00,0x00,0x00,0x00,0x00,0x00 }; static void TransmitByte(uint8 byte); static void SelectRow(uint8 row); static void FlipLatchLine(void); static void TransmitByte(uint8 byte) {         uint8 i;                  for(i = 0 ; i < 8 ; i ++)         {                 if(byte & (1 << i))                 {                         DOTLED_LINE_PORT |= _BV(DOTLED_LINE_SDA);                 }                 else                 {                         DOTLED_LINE_PORT &= ~_BV(DOTLED_LINE_SDA);                 }                 //__delay_cycles(100);                 DOTLED_LINE_PORT |= _BV(DOTLED_LINE_SCKH);                 //__delay_cycles(100);                 DOTLED_LINE_PORT &= ~_BV(DOTLED_LINE_SCKH);                 //__delay_cycles(100);         } } static void SelectRow(uint8 row) {           //row -= 1;         row |= DOTLED_ROW_PIN & 0xe0;         DOTLED_ROW_PORT = row; } static void FlipLatchLine(void) {         DOTLED_LINE_PORT |= _BV(DOTLED_LINE_SCKT);         DOTLED_LINE_PORT &= ~_BV(DOTLED_LINE_SCKT); } void InitDotLedPort(void) {         DOTLED_LINE_PORT &= ~(_BV(DOTLED_LINE_SCKT) | _BV(DOTLED_LINE_SCKH));         DOTLED_LINE_PORT |= _BV(DOTLED_LINE_SDA);         DOTLED_LINE_DDR |= _BV(DOTLED_LINE_SCKT) | _BV(DOTLED_LINE_SCKH) | _BV(DOTLED_LINE_SDA);                  DOTLED_ROW_PORT |= 0x1f;         DOTLED_ROW_PORT &= 0xf0;         DOTLED_ROW_DDR |= 0x1f; } void EnableRow(boolean IsEnable) {         if(IsEnable)         {                 DOTLED_ROW_PORT &= ~_BV(DOTLED_ROW_E);         }         else         {                 DOTLED_ROW_PORT |= _BV(DOTLED_ROW_E);         } } void PrintDotLed(uint8 * buffer) {         uint8 i , tmp;                  for(i = 0 ; i < 16 ; i ++)         {                 tmp = *buffer ++;                 TransmitByte(~tmp);                 tmp = *buffer ++;                 TransmitByte(~tmp);                 SelectRow(i);                 FlipLatchLine();         } } void main(void) {         InitDotLedPort();                  EnableRow(TRUE);                  while(1)         {                 PrintDotLed(font);                 __delay_cycles(5000);         }          } //---------------------------------------------------- config.h文件 #ifndef        _CONFIG_H #define        _CONFIG_H //#define                GCCAVR #define                CPU_CYCLES        7372800L #ifndef                GCCAVR #define                _BV(bit)        (1 << (bit)) #endif #define                MSB                0x80 #define                LSB                0x01 #define                FALSE                0 #define                TRUE                1 typedef                unsigned char        uint8; typedef                unsigned int        uint16; typedef                unsigned long        uint32; typedef                unsigned char        boolean; #include <ioavr.h> #include <inavr.h> #include "dotled.h" #endif //-----

    标签: 16 点阵显示 汉字 显示程序

    上传时间: 2013-11-17

    上传用户:mnacyf

  • 三份GCC中文教学文档

    三份GCC中文教学文档,很全面,是学习GCCAVR的好教材

    标签: GCC 文档

    上传时间: 2014-01-06

    上传用户:qq521