Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
##########------------------------------------------------------########## ########## Project-specific Details ########## ########## Check these every time you start a new project ########## ########## Book Make: AVR Programming ########## ########## https://github.com/hexagon5un/AVR-Programming ########## ##########------------------------------------------------------########## MCU = atmega328p F_CPU = 1000000 BAUD = 9600 ## Also try BAUD = 19200 or 38400 if you're feeling lucky. ## This is where your main() routine lives #MAIN = Serial_HC595_v1.c #MAIN = Serial_HC595_v2.c MAIN = Serial_HC595_v3.c ## If you've split your program into multiple .c / .h files, ## include the additional source (in same directory) here LOCAL_SOURCE = ## Here you can link to one more directory (and multiple .c files) #EXTRA_SOURCE_DIR = ../../AVR-Programming-Library/ EXTRA_SOURCE_DIR = EXTRA_SOURCE_FILES = ##########------------------------------------------------------########## ########## Programmer Defaults ########## ########## Set up once, then forget about it ########## ########## (Can override. See bottom of file.) ########## ##########------------------------------------------------------########## PROGRAMMER_TYPE = usbasp # extra arguments to avrdude: baud rate, chip type, -F flag, etc. PROGRAMMER_ARGS = -b 19200 -P /dev/ttyACM0 ##########------------------------------------------------------########## ########## Makefile Magic! ########## ########## Summary: ########## ########## We want a .hex file ########## ########## Compile source files into .elf ########## ########## Convert .elf file into .hex ########## ########## You shouldn't need to edit below. ########## ##########------------------------------------------------------########## ## Defined programs / locations CC = avr-gcc OBJCOPY = avr-objcopy OBJDUMP = avr-objdump AVRSIZE = avr-size AVRDUDE = avrdude ## Compilation options, type man avr-gcc if you're curious. CFLAGS = -mmcu=$(MCU) -DF_CPU=$(F_CPU)UL -DBAUD=$(BAUD) -Os -I. -I$(EXTRA_SOURCE_DIR) CFLAGS += -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums CFLAGS += -Wall -Wstrict-prototypes CFLAGS += -g -ggdb CFLAGS += -ffunction-sections -fdata-sections -Wl,--gc-sections -Wl,--relax CFLAGS += -std=gnu99 ## CFLAGS += -Wl,-u,vfprintf -lprintf_flt -lm ## for floating-point printf ## CFLAGS += -Wl,-u,vfprintf -lprintf_min ## for smaller printf ## Lump target and extra source files together TARGET = $(strip $(basename $(MAIN))) SRC = $(TARGET).c EXTRA_SOURCE = $(addprefix $(EXTRA_SOURCE_DIR), $(EXTRA_SOURCE_FILES)) SRC += $(EXTRA_SOURCE) SRC += $(LOCAL_SOURCE) ## List of all header files HEADERS = $(SRC:.c=.h) ## For every .c file, compile an .o object file OBJ = $(SRC:.c=.o) ## Generic Makefile targets. (Only .hex file is necessary) all: $(TARGET).hex %.hex: %.elf $(OBJCOPY) -R .eeprom -O ihex $< $@ %.elf: $(SRC) $(CC) $(CFLAGS) $(SRC) --output $@ %.eeprom: %.elf $(OBJCOPY) -j .eeprom --change-section-lma .eeprom=0 -O ihex $< $@ debug: @echo @echo "Source files:" $(SRC) @echo "MCU, F_CPU, BAUD:" $(MCU), $(F_CPU), $(BAUD) @echo # Optionally create listing file from .elf # This creates approximate assembly-language equivalent of your code. # Useful for debugging time-sensitive bits, # or making sure the compiler does what you want. disassemble: $(TARGET).lst disasm: disassemble eeprom: $(TARGET).eeprom %.lst: %.elf $(OBJDUMP) -S $< > $@ # Optionally show how big the resulting program is size: $(TARGET).elf $(AVRSIZE) -C --mcu=$(MCU) $(TARGET).elf clean: rm -f $(TARGET).elf $(TARGET).hex $(TARGET).obj \ $(TARGET).o $(TARGET).d $(TARGET).eep $(TARGET).lst \ $(TARGET).lss $(TARGET).sym $(TARGET).map $(TARGET)~ \ $(TARGET).eeprom squeaky_clean: rm -f *.elf *.hex *.obj *.o *.d *.eep *.lst *.lss *.sym *.map *~ ##########------------------------------------------------------########## ########## Programmer-specific details ########## ########## Flashing code to AVR using avrdude ########## ##########------------------------------------------------------########## flash: $(TARGET).hex $(AVRDUDE) -c $(PROGRAMMER_TYPE) -p $(MCU) $(PROGRAMMER_ARGS) -U flash:w:$< ## An alias program: flash flash_eeprom: $(TARGET).eeprom $(AVRDUDE) -c $(PROGRAMMER_TYPE) -p $(MCU) $(PROGRAMMER_ARGS) -U eeprom:w:$< avrdude_terminal: $(AVRDUDE) -c $(PROGRAMMER_TYPE) -p $(MCU) $(PROGRAMMER_ARGS) -nt ## If you've got multiple programmers that you use, ## you can define them here so that it's easy to switch. ## To invoke, use something like `make flash_arduinoISP` flash_usbtiny: PROGRAMMER_TYPE = usbtiny flash_usbtiny: PROGRAMMER_ARGS = # USBTiny works with no further arguments flash_usbtiny: flash flash_usbasp: PROGRAMMER_TYPE = usbasp flash_usbasp: PROGRAMMER_ARGS = # USBasp works with no further arguments flash_usbasp: flash flash_arduinoISP: PROGRAMMER_TYPE = avrisp flash_arduinoISP: PROGRAMMER_ARGS = -b 19200 -P /dev/ttyACM0 ## (for windows) flash_arduinoISP: PROGRAMMER_ARGS = -b 19200 -P com5 flash_arduinoISP: flash flash_109: PROGRAMMER_TYPE = avr109 flash_109: PROGRAMMER_ARGS = -b 9600 -P /dev/ttyUSB0 flash_109: flash ##########------------------------------------------------------########## ########## Fuse settings and suitable defaults ########## ##########------------------------------------------------------########## ## Mega 48, 88, 168, 328 default values LFUSE = 0x62 HFUSE = 0xdf EFUSE = 0x00 ## Generic FUSE_STRING = -U lfuse:w:$(LFUSE):m -U hfuse:w:$(HFUSE):m -U efuse:w:$(EFUSE):m fuses: $(AVRDUDE) -c $(PROGRAMMER_TYPE) -p $(MCU) \ $(PROGRAMMER_ARGS) $(FUSE_STRING) show_fuses: $(AVRDUDE) -c $(PROGRAMMER_TYPE) -p $(MCU) $(PROGRAMMER_ARGS) -nv ## Called with no extra definitions, sets to defaults set_default_fuses: FUSE_STRING = -U lfuse:w:$(LFUSE):m -U hfuse:w:$(HFUSE):m -U efuse:w:$(EFUSE):m set_default_fuses: fuses ## Set the fuse byte for full-speed mode ## Note: can also be set in firmware for modern chips set_fast_fuse: LFUSE = 0xE2 set_fast_fuse: FUSE_STRING = -U lfuse:w:$(LFUSE):m set_fast_fuse: fuses ## Set the EESAVE fuse byte to preserve EEPROM across flashes set_eeprom_save_fuse: HFUSE = 0xD7 set_eeprom_save_fuse: FUSE_STRING = -U hfuse:w:$(HFUSE):m set_eeprom_save_fuse: fuses ## Clear the EESAVE fuse byte clear_eeprom_save_fuse: FUSE_STRING = -U hfuse:w:$(HFUSE):m clear_eeprom_save_fuse: fuses
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
Peter Thiel Dialog Society
41 min ago | 23.72 KB
other seps
CSS | 1 hour ago | 0.15 KB
Check socradar.io for your FortiGate
PowerShell | 3 hours ago | 2.33 KB
Covid vs Covid vaccine heart problems
12 hours ago | 2.29 KB
MindZoom
18 hours ago | 2.10 KB
listen.php
PHP | 19 hours ago | 1.28 KB
bind_shell.sh
19 hours ago | 0.21 KB
Untitled
1 day ago | 11.34 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!