代码搜索结果
找到约 634 项符合
OLED 的代码
oled.lst
__start:
__text_start:
3E EFCF LDI R28,0xFF
3F E0D2 LDI R29,2
40 BFCD OUT 0x3D,R28
41 BFDE OUT 0x3E,R29
42 51C0 SUBI R28,0x10
43 40D
oled.hex
:020000003DC001
:140034000000000000000000000000000000000000000000B8
:140048000000000000000000000000000000000000000000A4
:14005C00000000000000000000000000000000000000000090
:14007000000000003443101
oled.mak
CC = iccavr
CFLAGS = -ID:\icc\include\ -e -D__ICC_VERSION="7.08" -D_EE_EXTIO -DATMega48 -l -g -Mavr_enhanced_small
ASFLAGS = $(CFLAGS) -Wa-g
LFLAGS = -LD:\icc\lib\ -g -bfunc_lit:0x34.0x1000 -d
oled.h
#ifndef oled_h
#define oled_h
ubyte ReadOLED(ubyte address);
void WriteMode(void);
void WriteBright(void);
#endif
oled.lis
.module OLED.c
.area text(rom, con, rel)
0000 .dbfile D:\OLED\OLED.c
0000 .dbfunc e InitOLED _InitOLED fV
oled.mp
NOTE: AVR Code addresses are word addresses
All other addresses (including ones in FLASH) are byte addresses
Area Addr Size Decimal Bytes (Attributes)
----------
oled.c
//ICC-AVR application builder : 2006-02-12 14:00:00
// Target : ATmega48
// Crystal: 8.000Mhz
// Author: jackyan
#include "iom48v.h"
#include "macros.h"
#include "Defs.h"
#include "OLED.h"
oled._c
//ICC-AVR application builder : 2006-02-12 14:00:00
// Target : ATmega48
// Crystal: 8.000Mhz
// Author: jackyan
#include "iom48v.h"
#include "macros.h"
#include "Defs.h"
#include "OLED.h"