Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: rogerpolaris/AVR-Programming
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: hexagon5un/AVR-Programming
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 14 commits
  • 180 files changed
  • 1 contributor

Commits on Feb 18, 2015

  1. changed Makefile to build all files in current dir

    taking project name from directory name
    now, with the exception of F_CPU and MCU and BAUD, one Makefile
    can work for all projects
    should be able to copy over, saving hassle.
    Elliot Williams committed Feb 18, 2015
    Configuration menu
    Copy the full SHA
    79cd4d9 View commit details
    Browse the repository at this point in the history
  2. Changed project-specific Makefiles to be generic

    to do this, every sub-project needed its own directory
    so there's a few more created
    also, care is taken to make sure all projects at 8MHz have
     corresponding 8MHz Makefiles:
       for f in `grep -s -l clock_div_1 Chapter*/*/*` ; do dirname $f ; done
    Elliot Williams committed Feb 18, 2015
    Configuration menu
    Copy the full SHA
    1f40bd0 View commit details
    Browse the repository at this point in the history
  3. updated project list to match current state

    Elliot Williams committed Feb 18, 2015
    Configuration menu
    Copy the full SHA
    6eb1008 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2015

  1. Through chapter 06

    Found a bunch of directories with multiple main files, split into
    subdirs
    
    Found multiple un-init-to-zero variables that were throwing compiler
    warnings.  Cleaned these up.
    Elliot Williams committed Feb 28, 2015
    Configuration menu
    Copy the full SHA
    5e4b06f View commit details
    Browse the repository at this point in the history
  2. more zero-inits and multiple main directories

    all cleaned up and tested
    Elliot Williams committed Feb 28, 2015
    Configuration menu
    Copy the full SHA
    e912ab2 View commit details
    Browse the repository at this point in the history
  3. Many changes in servo sundial code

    But none of it substantive.  :)
    Just moving global variable definitions / declarations around to make it
    work with the new makefile structure.
    (I was lax with where things were before b/c I was lumping all C files
    together in compile phase.)
    Elliot Williams committed Feb 28, 2015
    Configuration menu
    Copy the full SHA
    554c45e View commit details
    Browse the repository at this point in the history
  4. Merge branch 'post_makefile_review'

    Catching lots of little bugs and complier warnings:
     mostly multiple main() functions in multiple files in same dir
     and uninitialized zero variables
    
    Almost all solved by creating subdirectories and adding "=0" here and
    there.
    
    Exception is servo sundial code, which needed a deeper re-work because
    of the (ab)use of global variables.
    
    * post_makefile_review:
      Many changes in servo sundial code
      more zero-inits and multiple main directories
      Through chapter 06
    Elliot Williams committed Feb 28, 2015
    Configuration menu
    Copy the full SHA
    5086082 View commit details
    Browse the repository at this point in the history

Commits on Mar 23, 2016

  1. finally added license

    Elliot Williams committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    0c9294b View commit details
    Browse the repository at this point in the history
  2. fix timer audio by reset counter

    Elliot Williams committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    9146e1c View commit details
    Browse the repository at this point in the history
  3. added prototype for nibbleToHexCharacter()

    Elliot Williams committed Mar 23, 2016
    Configuration menu
    Copy the full SHA
    f415122 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2016

  1. Changed poor variable naming: wavelength -> period

    Doesn't change functionality, but readability.
    Elliot Williams committed May 11, 2016
    Configuration menu
    Copy the full SHA
    f237cd2 View commit details
    Browse the repository at this point in the history

Commits on May 20, 2016

  1. change return (0); to return 0;

    Elliot Williams committed May 20, 2016
    Configuration menu
    Copy the full SHA
    6cf8873 View commit details
    Browse the repository at this point in the history

Commits on Mar 25, 2017

  1. bug fix: one missing zero in blink.c code

    Thanks KaiserS0ze for pointing this out.
    Elliot Williams committed Mar 25, 2017
    Configuration menu
    Copy the full SHA
    8a9ad40 View commit details
    Browse the repository at this point in the history

Commits on Jan 11, 2021

  1. Updated some utilities to Python 3

    Thanks dComposer!
    Elliot Williams committed Jan 11, 2021
    Configuration menu
    Copy the full SHA
    ad2512e View commit details
    Browse the repository at this point in the history
Loading