Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
d664f96e
Commit
d664f96e
authored
9 years ago
by
Oleg Hahm
Browse files
Options
Downloads
Patches
Plain Diff
lm4f120: removed superfluous stellaris debug.h
parent
e15bdd25
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
cpu/lm4f120/include/cpu_conf.h
+0
-1
0 additions, 1 deletion
cpu/lm4f120/include/cpu_conf.h
cpu/lm4f120/periph/uart.c
+2
-1
2 additions, 1 deletion
cpu/lm4f120/periph/uart.c
cpu/stellaris_common/include/stellaris_periph/debug.h
+0
-76
0 additions, 76 deletions
cpu/stellaris_common/include/stellaris_periph/debug.h
with
2 additions
and
78 deletions
cpu/lm4f120/include/cpu_conf.h
+
0
−
1
View file @
d664f96e
...
...
@@ -35,7 +35,6 @@ extern "C" {
#include
"hw_types.h"
#include
"cortex-m4-def.h"
#include
"stellaris_periph/cpu.h"
#include
"stellaris_periph/debug.h"
#include
"stellaris_periph/interrupt.h"
#include
"stellaris_periph/sysctl.h"
#include
"stellaris_periph/adc.h"
...
...
This diff is collapsed.
Click to expand it.
cpu/lm4f120/periph/uart.c
+
2
−
1
View file @
d664f96e
...
...
@@ -18,6 +18,7 @@
#include
<stdint.h>
#include
"assert.h"
#include
"cpu.h"
#include
"sched.h"
#include
"thread.h"
...
...
@@ -79,7 +80,7 @@ static const unsigned long g_ulUARTInt[3] =
int
uart_init
(
uart_t
uart
,
uint32_t
baudrate
,
uart_rx_cb_t
rx_cb
,
uart_tx_cb_t
tx_cb
,
void
*
arg
)
{
/* Check the arguments */
ASSERT
(
uart
==
0
);
assert
(
uart
==
0
);
/* Check to make sure the UART peripheral is present */
if
(
!
ROM_SysCtlPeripheralPresent
(
SYSCTL_PERIPH_UART0
)){
return
-
1
;
...
...
This diff is collapsed.
Click to expand it.
cpu/stellaris_common/include/stellaris_periph/debug.h
deleted
100644 → 0
+
0
−
76
View file @
e15bdd25
//*****************************************************************************
//
// debug.h - Macros for assisting debug of the driver library.
//
// Copyright (c) 2006-2012 Texas Instruments Incorporated. All rights reserved.
// Software License Agreement
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the
// distribution.
//
// Neither the name of Texas Instruments Incorporated nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// This is part of revision 9453 of the Stellaris Peripheral Driver Library.
//
//*****************************************************************************
#ifndef __DEBUG_H__
#define __DEBUG_H__
#ifdef __cplusplus
extern
"C"
{
#endif
//*****************************************************************************
//
// Prototype for the function that is called when an invalid argument is passed
// to an API. This is only used when doing a DEBUG build.
//
//*****************************************************************************
extern
void
__error__
(
char
*
pcFilename
,
unsigned
long
ulLine
);
//*****************************************************************************
//
// The ASSERT macro, which does the actual assertion checking. Typically, this
// will be for procedure arguments.
//
//*****************************************************************************
#ifdef DEBUG
#define ASSERT(expr) { \
if(!(expr)) \
{ \
__error__(RIOT_FILE_RELATIVE, __LINE__); \
} \
}
#else
#define ASSERT(expr)
#endif
#ifdef __cplusplus
}
#endif
#endif // __DEBUG_H__
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment