Skip to content
Snippets Groups Projects
Commit ab227a8e authored by patacongo's avatar patacongo
Browse files

Rename arch/pjrc-8051 to arch/8051

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3315 42af7a65-404d-4744-a932-0658087f49c3
parent 6ac240a7
No related branches found
No related tags found
No related merge requests found
Showing
with 23 additions and 27 deletions
......@@ -1465,6 +1465,6 @@
Dean Camera.
* examples/nsh -- Correct an usage of getopt(): If you stop calling getopt()
before all parameters are parsed, you can leave getopt() in a strange state.
* Rename arch/pjrc-8051 to arch/8051
......@@ -8,7 +8,7 @@
<tr align="center" bgcolor="#e4e4e4">
<td>
<h1><big><font color="#3c34ec"><i>NuttX RTOS</i></font></big></h1>
<p>Last Updated: February 21, 2011</p>
<p>Last Updated: February 24, 2011</p>
</td>
</tr>
</table>
......@@ -2042,6 +2042,7 @@ nuttx-5.18 2011-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
Dean Camera.
* examples/nsh -- Correct an usage of getopt(): If you stop calling getopt()
before all parameters are parsed, you can leave getopt() in a strange state.
* Rename arch/pjrc-8051 to arch/8051
pascal-2.1 2011-xx-xx Gregory Nutt &lt;spudmonkey@racsa.co.cr&gt;
......
......@@ -12,7 +12,7 @@
<h1><big><font color="#3c34ec">
<i>NuttX RTOS Porting Guide</i>
</font></big></h1>
<p>Last Updated: February 14, 2011</p>
<p>Last Updated: February 24, 2011</p>
</td>
</tr>
</table>
......@@ -468,7 +468,7 @@
A work in progress.
</li>
<li><code>arch/pjrc-8051</code>:
<li><code>arch/8051</code>:
8051 Microcontroller. This port is not quite ready for prime time.
</li>
......
......@@ -9,7 +9,7 @@
<tr align="center" bgcolor="#e4e4e4">
<td>
<h1><big><font color="#3c34ec"><i>NuttX README Files</i></font></big></h1>
<p>Last Updated: November 5, 2010</p>
<p>Last Updated: February 24, 2010</p>
</td>
</tr>
</table>
......
NuttX TODO List (Last updated February 11, 2011)
NuttX TODO List (Last updated February 24, 2011)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
(5) Task/Scheduler (sched/)
......@@ -16,7 +16,7 @@ NuttX TODO List (Last updated February 11, 2011)
(2) Graphics subystem (graphics/)
(1) Pascal add-on (pcode/)
(1) Documentation (Documentation/)
(6) Build system / Toolchains
(5) Build system / Toolchains
(4) NuttShell (NSH) (examples/nsh)
(3) Other Applications & Tests (examples/)
(5) Linux/Cywgin simulation (arch/sim)
......@@ -30,7 +30,7 @@ NuttX TODO List (Last updated February 11, 2011)
(3) ARM/STR71x (arch/arm/src/str71x/)
(4) ARM/LM3S6918 (arch/arm/src/lm3s/)
(5) ARM/STM32 (arch/arm/src/stm32/)
(4) pjrc-8052 / MCS51 (arch/pjrc-8051/)
(4) 8051 / MCS51 (arch/8051/)
(2) Hitachi/Renesas SH-1 (arch/sh/src/sh1)
(4) Renesas M16C/26 (arch/sh/src/m16c)
(8) z80/z8/ez80 (arch/z80/)
......@@ -490,11 +490,6 @@ o Documentation (Documentation/)
o Build system
^^^^^^^^^^^^
Description: Some names under arch are still incorrect. These should be
processor architecture names: pjrc-8051 should be 805x
Status: Open
Priority: Low
Description: configs/pjrc-8051 should be configs/pjrc-87c52
Status: Open
Priority: Low
......@@ -882,8 +877,8 @@ o ARM/STM32 (arch/arm/src/stm32/)
Priority: Uncertain. I don't this is a bug, I think I just don't understand
how to work with this type of SD card.
o pjrc-8052 / MCS51 (arch/pjrc-8051/)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
o 8051 / MCS51 (arch/8051/)
^^^^^^^^^^^^^^^^^^^^^^^^^
Description: Current status:
- Basic OS task management seems OK
......
File moved
File moved
/************************************************************
* arch/pjrc-8051/include/limits.h
* arch/8051/include/limits.h
*
* Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
......@@ -33,8 +33,8 @@
*
************************************************************/
#ifndef __ARCH_PJRC8051_INCLUDE_LIMITS_H
#define __ARCH_PJRC8051_INCLUDE_LIMITS_H
#ifndef __ARCH_8051_INCLUDE_LIMITS_H
#define __ARCH_8051_INCLUDE_LIMITS_H
/************************************************************
* Included Files
......@@ -76,4 +76,4 @@
#define PTR_MAX 0x7fffff
#define UPTR_MAX 0xffffff
#endif /* __ARCH_PJRC8051_INCLUDE_LIMITS_H */
#endif /* __ARCH_8051_INCLUDE_LIMITS_H */
/************************************************************************
* arch/pjrc-8051/include/types.h
* arch/8051/include/types.h
*
* Copyright (C) 2007, 2009 Gregory Nutt. All rights reserved.
* Copyright (C) 2007, 2009, 2011 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <spudmonkey@racsa.co.cr>
*
* Redistribution and use in source and binary forms, with or without
......@@ -37,8 +37,8 @@
* only indirectly through sys/types.h
*/
#ifndef __ARCH_PJRC8051_INCLUDE_TYPES_H
#define __ARCH_PJRC8051_INCLUDE_TYPES_H
#ifndef __ARCH_8051_INCLUDE_TYPES_H
#define __ARCH_8051_INCLUDE_TYPES_H
/************************************************************************
* Included Files
......@@ -95,4 +95,4 @@ typedef unsigned char irqstate_t;
* Global Function Prototypes
************************************************************************/
#endif /* __ARCH_PJRC8051_INCLUDE_TYPES_H */
#endif /* __ARCH_8051_INCLUDE_TYPES_H */
############################################################################
# arch/pjrc-8051/src/Makefile
# arch/8051/src/Makefile
#
# Copyright (C) 2007, 2008 Gregory Nutt. All rights reserved.
# Copyright (C) 2007, 2008, 2011 Gregory Nutt. All rights reserved.
# Author: Gregory Nutt <spudmonkey@racsa.co.cr>
#
# Redistribution and use in source and binary forms, with or without
......
File moved
File moved
File moved
File moved
File moved
File moved
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment