// Copyright (c) Microsoft Open Technologies, Inc.  All rights reserved.  
// Licensed under the BSD 2-Clause License.  
// See License.txt in the project root for license information.

#ifndef MACROS_H
#define MACROS_H

/*
 * The avr/macros.h file providies a set of macros
 * necessary for compiling AVR. These are provided
 * to offer analogous functionality on Windows.
 */

#define _BV(x) (1 << x)

#endif
