[Tinyos-2-commits] CVS: tinyos-2.x/tos/lib/tosboot/epic ExtFlashC.nc, NONE, 1.1 ExtFlashM.nc, NONE, 1.1 hardware.h, NONE, 1.1
Razvan Musaloiu-E.
razvanm at users.sourceforge.net
Mon Aug 25 09:48:51 PDT 2008
- Previous message: [Tinyos-2-commits] CVS: tinyos-2.x/tos/lib/tosboot/msp430f1611 InternalFlash.h, NONE, 1.1 InternalFlash.nc, NONE, 1.1 PluginC.nc, NONE, 1.1 PowerOffM.nc, NONE, 1.1 TOSBoot_platform.h, NONE, 1.1
- Next message: [Tinyos-2-commits] CVS: tinyos-2.x/tos/lib/net/Deluge/BlockStorageManager BlockStorageManagerC.nc, 1.3, 1.4 BlockStorageManagerP.nc, 1.3, 1.4
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/tinyos/tinyos-2.x/tos/lib/tosboot/epic
In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv14951/tos/lib/tosboot/epic
Added Files:
ExtFlashC.nc ExtFlashM.nc hardware.h
Log Message:
Deluge T2 support for Epic. This includes support for at45db161d and some refactoring and cleaning.
--- NEW FILE: ExtFlashC.nc ---
// $Id: ExtFlashC.nc,v 1.1 2008/08/25 16:48:47 razvanm Exp $
/*
*
*
* "Copyright (c) 2000-2005 The Regents of the University of California.
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose, without fee, and without written agreement is
* hereby granted, provided that the above copyright notice, the following
* two paragraphs and the author appear in all copies of this software.
*
* IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
* OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
* CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
* ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS."
*
*/
/**
* @author Jonathan Hui <jwhui at cs.berkeley.edu>
*/
configuration ExtFlashC {
provides {
interface Init;
interface StdControl;
interface ExtFlash;
}
}
implementation {
components
ExtFlashM,
HPLUSART0M;
Init = ExtFlashM;
StdControl = ExtFlashM;
ExtFlash = ExtFlashM;
ExtFlashM.USARTControl -> HPLUSART0M;
}
--- NEW FILE: ExtFlashM.nc ---
// $Id: ExtFlashM.nc,v 1.1 2008/08/25 16:48:47 razvanm Exp $
/*
* "Copyright (c) 2000-2005 The Regents of the University of California.
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose, without fee, and without written agreement is
* hereby granted, provided that the above copyright notice, the following
* two paragraphs and the author appear in all copies of this software.
*
* IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
* OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
* CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
* ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS."
*/
/**
* @author Jonathan Hui <jwhui at cs.berkeley.edu>
* @author Razvan Musaloiu-E. <razvanm at cs.jhu.edu>
*/
module ExtFlashM {
provides {
interface StdControl;
interface Init;
interface ExtFlash;
}
uses {
interface HPLUSARTControl as USARTControl;
}
}
implementation {
uint32_t addr;
command error_t Init.init() {
TOSH_MAKE_FLASH_CS_OUTPUT();
TOSH_SET_FLASH_CS_PIN();
call USARTControl.setModeSPI();
return SUCCESS;
}
command error_t StdControl.start() {
return SUCCESS;
}
command error_t StdControl.stop() {
call USARTControl.disableSPI();
return SUCCESS;
}
command void ExtFlash.startRead(uint32_t newAddr) {
uint8_t cmd[4];
uint8_t i;
uint32_t page = newAddr / 512;
uint32_t offset = newAddr % 512;
addr = newAddr;
cmd[0] = 0x03;
cmd[1] = page >> 6;
cmd[2] = (page << 2) | (offset >> 8);
cmd[3] = offset;
TOSH_CLR_FLASH_CS_PIN();
for ( i = 0; i < sizeof(cmd); i++ ) {
call USARTControl.tx(cmd[i]);
while(call USARTControl.isTxEmpty() != SUCCESS);
}
}
command uint8_t ExtFlash.readByte() {
if (!(addr & 0x1ff)) {
call ExtFlash.stopRead();
call ExtFlash.startRead(addr);
}
addr++;
call USARTControl.rx();
call USARTControl.tx(0);
while(call USARTControl.isRxIntrPending() != SUCCESS);
return call USARTControl.rx();
}
command void ExtFlash.stopRead() {
TOSH_SET_FLASH_CS_PIN();
}
}
--- NEW FILE: hardware.h ---
// $Id: hardware.h,v 1.1 2008/08/25 16:48:47 razvanm Exp $
/*
*
*
* "Copyright (c) 2000-2005 The Regents of the University of California.
* All rights reserved.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation for any purpose, without fee, and without written agreement is
* hereby granted, provided that the above copyright notice, the following
* two paragraphs and the author appear in all copies of this software.
*
* IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT
* OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF
* CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
* ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS."
*
*/
/**
* @author Jonathan Hui <jwhui at cs.berkeley.edu>
*/
#ifndef __HARDWARE_H__
#define __HARDWARE_H__
#include "msp430hardware.h"
// internal flash is 16 bits in width
typedef uint16_t in_flash_addr_t;
// external flash is 32 bits in width
typedef uint32_t ex_flash_addr_t;
void wait(uint16_t t) {
for ( ; t > 0; t-- );
}
// LEDs
TOSH_ASSIGN_PIN(RED_LED, 4, 0);
TOSH_ASSIGN_PIN(GREEN_LED, 4, 3);
TOSH_ASSIGN_PIN(YELLOW_LED, 4, 7);
// UART pins
TOSH_ASSIGN_PIN(SOMI0, 3, 2);
TOSH_ASSIGN_PIN(SIMO0, 3, 1);
TOSH_ASSIGN_PIN(UCLK0, 3, 3);
TOSH_ASSIGN_PIN(UTXD0, 3, 4);
TOSH_ASSIGN_PIN(URXD0, 3, 5);
// User Interupt Pin
TOSH_ASSIGN_PIN(USERINT, 2, 7);
// FLASH
TOSH_ASSIGN_PIN(FLASH_CS, 4, 4);
void TOSH_SET_PIN_DIRECTIONS(void)
{
P3SEL = 0x0E; // set SPI and I2C to mod func
P1DIR = 0xe0;
P1OUT = 0x00;
P2DIR = 0x7b;
P2OUT = 0x10;
P3DIR = 0xf1;
P3OUT = 0x00;
P4DIR = 0xfd;
P4OUT = 0xdd;
P5DIR = 0xff;
P5OUT = 0xff;
P6DIR = 0xff;
P6OUT = 0x00;
}
#endif
- Previous message: [Tinyos-2-commits] CVS: tinyos-2.x/tos/lib/tosboot/msp430f1611 InternalFlash.h, NONE, 1.1 InternalFlash.nc, NONE, 1.1 PluginC.nc, NONE, 1.1 PowerOffM.nc, NONE, 1.1 TOSBoot_platform.h, NONE, 1.1
- Next message: [Tinyos-2-commits] CVS: tinyos-2.x/tos/lib/net/Deluge/BlockStorageManager BlockStorageManagerC.nc, 1.3, 1.4 BlockStorageManagerP.nc, 1.3, 1.4
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the Tinyos-2-commits
mailing list