avr-libc  2.1.0
Standard C library for AVR-GCC

AVR Libc Home Page

AVRs

AVR Libc Development Pages

Main Page

User Manual

Library Reference

FAQ

Example Projects

cpufunc.h
Go to the documentation of this file.
1 /* Copyright (c) 2010, Joerg Wunsch
2  All rights reserved.
3 
4  Redistribution and use in source and binary forms, with or without
5  modification, are permitted provided that the following conditions are met:
6 
7  * Redistributions of source code must retain the above copyright
8  notice, this list of conditions and the following disclaimer.
9 
10  * Redistributions in binary form must reproduce the above copyright
11  notice, this list of conditions and the following disclaimer in
12  the documentation and/or other materials provided with the
13  distribution.
14 
15  * Neither the name of the copyright holders nor the names of
16  contributors may be used to endorse or promote products derived
17  from this software without specific prior written permission.
18 
19  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
23  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  POSSIBILITY OF SUCH DAMAGE. */
30 
31 /* $Id: cpufunc_8h_source.html,v 1.1.1.7 2022/01/29 09:21:56 joerg_wunsch Exp $ */
32 
33 /* avr/cpufunc.h - Special CPU functions */
34 
35 #ifndef _AVR_CPUFUNC_H_
36 #define _AVR_CPUFUNC_H_ 1
37 
38 #include <stdint.h>
39 
40 /** \file */
41 /** \defgroup avr_cpufunc <avr/cpufunc.h>: Special AVR CPU functions
42  \code #include <avr/cpufunc.h> \endcode
43 
44  This header file contains macros that access special functions of
45  the AVR CPU which do not fit into any of the other header files.
46 
47 */
48 
49 #if defined(__DOXYGEN__)
50 /**
51  \ingroup avr_cpufunc
52  \def _NOP
53 
54  Execute a <i>no operation</i> (NOP) CPU instruction. This
55  should not be used to implement delays, better use the functions
56  from <util/delay_basic.h> or <util/delay.h> for this. For
57  debugging purposes, a NOP can be useful to have an instruction that
58  is guaranteed to be not optimized away by the compiler, so it can
59  always become a breakpoint in the debugger.
60 */
61 #define _NOP()
62 #else /* real code */
63 #define _NOP() __asm__ __volatile__("nop")
64 #endif /* __DOXYGEN__ */
65 
66 #if defined(__DOXYGEN__)
67 /**
68  \ingroup avr_cpufunc
69  \def _MemoryBarrier
70 
71  Implement a read/write <i>memory barrier</i>. A memory
72  barrier instructs the compiler to not cache any memory data in
73  registers beyond the barrier. This can sometimes be more effective
74  than blocking certain optimizations by declaring some object with a
75  \c volatile qualifier.
76 
77  See \ref optim_code_reorder for things to be taken into account
78  with respect to compiler optimizations.
79 */
80 #define _MemoryBarrier()
81 #else /* real code */
82 #define _MemoryBarrier() __asm__ __volatile__("":::"memory")
83 #endif /* __DOXYGEN__ */
84 
85 /**
86  \ingroup avr_cpufunc
87 
88  Write \a __value to Configuration Change Protected (CCP) IO register
89  at \a __ioaddr.
90  */
91 void ccp_write_io (uint8_t *__ioaddr, uint8_t __value);
92 
93 #endif /* _AVR_CPUFUNC_H_ */
void ccp_write_io(uint8_t *__ioaddr, uint8_t __value)
unsigned char uint8_t
Definition: stdint.h:83