- Dropbear: SSH server and client let you get a remote console on the target device and Copy files to/from the target device.
- thttpd: Tiny/Turbo/Throttling HTTP server
- Boa Webserver
- lighthttpd Webserver
- TinyLogin
To be continued...
1 - > Bit 1Example:
2 - > Bit 2
4 - > Bit 3
8 - > Bit 4
16 - > Bit 5
32 - > Bit 6
64 - > Bit 7
128 - > Bit 8
if(buffer[0] & 1 == 0){// Frist bit is set to 0}
else{// First bit is set to 1}
if(buffer[0] & 64 == 0){// Bit number 7 is set to 0}else{// Bit number 7 is set to 1}
#define CLKLOW() // Put SCLK GPIO to LOW
#define CLKHIGH() // Put SCLK GPIO to HIGH
#define ASSERTCS() // Put /CS GPIO to LOW
#define DEASSERTCS() // Put /CS GPIO to HIGH
#define READMISO() // MISO GPIO status?
#define MOSIHIGH() // MOSI GPIO to HIGH
#define MOSILOW() // MOSI GPIO to LOW
#define POWERON() // VCC GPIO to HIGH
#define POWERDOWN // VCC GPIO to LOW
#define SPISPPED 140
void spi_init()
{
POWERON();
CLKHIGH();
DEASSERTCS();
}
/////////////////////////////////////////////////////////////////////////////////////////////////
void spi_write_byte_SPIBitBang8BitsMode0(unsigned char byte)
{
unsigned char bit;
ASSERTCS();
for (bit = 0; bit < 8; bit++) {
/* write MOSI on trailing edge of previous clock */
if (byte & 0x80)
MOSIHIGH();
else
MOSILOW();
byte <<= 1;
/* half a clock cycle before leading/rising edge */
SPIDELAY(SPISPEED/2);
CLKHIGH();
/* half a clock cycle before trailing/falling edge */
SPIDELAY(SPISPEED/2);
/* read MISO on trailing edge */
//byte |= READMISO();
CLKLOW();
}
DEASSERTCS();
}
/////////////////////////////////////////////////////////////////////////////////////////////////
void spi_write_byte(unsigned char byte) /* Pseudo Code */{TEMP = 100000000B;SS = 0;SCK = 1;
WHILE(TEMP)MOSI = (WRITE_BUFFER && TEMP);TEMP >> 1;SCK ^= 1;END WHILESS = 1}
/////////////////////////////////////////////////////////////////////////////////////////////////
unsigned char spi_read_byte() /* Pseudo Code */{SS = 0;SCK = 1;Count = 8;WHILE(count)READ_BUFFER | = MISO;READ_BUFFER << 1;Count--;SCK ^= 1;END WHILESS = 1}
////////////////////////
void spi_stop(){POWERDOWN();}
For more information on SPI, please visit this Wikipedia article
$ modprobe jffs2
$ modprobe mtdblock
$ modprobe mtdram
$ dd if=jffs2.bin of=/dev/mtdblock0
$ mount -t jffs2 /dev/mtdblock0 /mnt/flash
$ dd if=/dev/mtdblock0 of=new-jffs2.bin.
mkfs.jffs2 -r /mnt/flash -e 128 -b -o rootfs.jffs2
console=ttyS0,115200 rootfstype=jffs2 root=/dev/mtdblock2
static unsigned int my_super_new_boot_argument = 1;
is_my_super_new_boot_argumennt(char *str)
{
get_option(&str, &my_super_new_boot_argument);
return 1;
}
/* Handle parameter "my_super_new_boot_argument=" */
__setup("my_super_new_boot_argument=", is_my_super_new_boot_argumennt);
if (my_super_new_boot_argument)
{
/* ... */
}