Skip to content
This repository has been archived by the owner on Jan 27, 2021. It is now read-only.

Commit

Permalink
Prerelease 0.1.3
Browse files Browse the repository at this point in the history
Signed-off-by: Rahix <rahix@rahix.de>
  • Loading branch information
Rahix committed Oct 1, 2018
1 parent e924352 commit 07b4051
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog

## [Unreleased]


## [0.1.3] = 2018-10-1
### Changed
- Made a few registers safe to write

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "atmega32u4"
version = "0.1.2"
version = "0.1.3"
authors = ["Rahix <rahix@rahix.de>"]
description = "Low level access to ATmega32U4 registers"
license = "MIT OR Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions src/peripherals/timer0/tccr_b/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ impl WGM2R {
pub enum CSR {
#[doc = "No clock source (Timer/Counter stopped)"]
STOPPED,
#[doc = "clkIO /1 (No prescaling)"]
#[doc = "clkIO/1 (No prescaling)"]
IO,
#[doc = "clkIO/8 (From prescaler)"]
IO_8,
Expand Down Expand Up @@ -226,7 +226,7 @@ impl<'a> _WGM2W<'a> {
pub enum CSW {
#[doc = "No clock source (Timer/Counter stopped)"]
STOPPED,
#[doc = "clkIO /1 (No prescaling)"]
#[doc = "clkIO/1 (No prescaling)"]
IO,
#[doc = "clkIO/8 (From prescaler)"]
IO_8,
Expand Down Expand Up @@ -275,7 +275,7 @@ impl<'a> _CSW<'a> {
pub fn stopped(self) -> &'a mut W {
self.variant(CSW::STOPPED)
}
#[doc = "clkIO /1 (No prescaling)"]
#[doc = "clkIO/1 (No prescaling)"]
#[inline]
pub fn io(self) -> &'a mut W {
self.variant(CSW::IO)
Expand Down
2 changes: 1 addition & 1 deletion svd/timer0.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ values = [
[val.cs]
values = [
{valu=0, name="STOPPED", desc="No clock source (Timer/Counter stopped)"},
{valu=1, name="IO", desc="clkIO /1 (No prescaling)"},
{valu=1, name="IO", desc="clkIO/1 (No prescaling)"},
{valu=2, name="IO_8", desc="clkIO/8 (From prescaler)"},
{valu=3, name="IO_64", desc="clkIO/64 (From prescaler)"},
{valu=4, name="IO_256", desc="clkIO/256 (From prescaler)"},
Expand Down

0 comments on commit 07b4051

Please sign in to comment.