puppy linux中文设置,Puppy Linux 中文支持包制作方法

chali20122012-02-02 15:23

博主您好!我有个问题,u-boot-1.3.4移植到S3C2416开发板上,使用TFTP下载时得到这样的提示:

SAM2416EDK # tftp 0x30000000 u-boot.bin

dm9000 i/o: 0x20000300, id: 0x90000a46

MAC: 1f:2e:3d:4c:5b:6a

TFTP from server 192.168.0.8; our IP address is 192.168.0.245

Filename 'u-boot.bin'.

Load address: 0x30000000

Loading: T T T T T T T T T T

Retry count exceeded; starting again

TFTP from server 192.168.0.8; our IP address is 192.168.0.245

Filename 'u-boot.bin'.

Load address: 0x30000000

Loading: T T T T T T T T T T

Retry count exceeded; starting again

环境变量是这样:

U-Boot 1.3.4 (Feb  2 2012 - 13:20:17) for SMDK2416

CPU:   S3C2416@400MHz

Fclk = 800MHz, Hclk = 133MHz, Pclk = 66MHz

Board: SMDK2416 DDR2

DRAM:    128 MB

Flash:   1 MB

NAND:    256 MB

In:      serial

Out:     serial

Err:     serial

ETH test 1

ETH test 2

Hit any key to stop autoboot:  0

SAM2416EDK # printenv

bootdelay=3

baudrate=115200

ethaddr=00:E0:22:FE:B8:DA

ipaddr=192.168.0.245

serverip=192.168.0.8

gatewayip=192.168.0.18

netmask=255.255.255.0

bootcmd=nand read.jffs2 C0008000 40000 400000;bootm C0008000

bootargs=noinitrd console=ttySAC0,115200 root=/dev/mtdblock2 rootfstype=yaffs2 init=/linuxrc

stdin=serial

stdout=serial

stderr=serial

我把DM9000代码贴出来,期待得到您的帮助,谢谢!

/*

dm9000.c: Version 1.2 12/15/2003

A Davicom DM9000 ISA NIC fast Ethernet driver for Linux.

Copyright (C) 1997  Sten Wang

This program is free software; you can redistribute it and/or

modify it under the terms of the GNU General Public License

as published by the Free Software Foundation; either version 2

of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,

but WITHOUT ANY WARRANTY; without even the implied warranty of

MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the

GNU General Public License for more details.

(C)Copyright 1997-1998 DAVICOM Semiconductor,Inc. All Rights Reserved.

V0.11   06/20/2001  REG_0A bit3=1, default enable BP with DA match

06/22/2001  Support DM9801 progrmming

E3: R25 = ((R24 + NF) & 0x00ff) | 0xf000

E4: R25 = ((R24 + NF) & 0x00ff) | 0xc200

R17 = (R17 & 0xfff0) | NF + 3

E5: R25 = ((R24 + NF - 3) & 0x00ff) | 0xc200

R17 = (R17 & 0xfff0) | NF

v1.00                   modify by simon 2001.9.5

change for kernel 2.4.x

v1.1   11/09/2001       fix force mode bug

v1.2   03/18/2003       Weilun Huang :

Fixed phy reset.

Added tx/rx 32 bit mode.

Cleaned up for kernel merge.

--------------------------------------

12/15/2003       Initial port to u-boot by Sascha Hauer

TODO: Homerun NIC and longrun NIC are not functional, only internal at the

moment.

*/

#include

#include

#include

#include

#ifdef CONFIG_DRIVER_DM9000

#include "dm9000x.h"

/* Board/System/Debug information/definition ---------------- */

#define DM9801_NOISE_FLOOR  0x08

#define DM9802_NOISE_FLOOR  0x05

/* #define CONFIG_DM9000_DEBUG */

#ifdef CONFIG_DM9000_DEBUG

#define DM9000_DBG(fmt,args...) printf(fmt ,##args)

#else                   /*  */

#define DM9000_DBG(fmt,args...)

#endif                  /*  */

enum DM9000_PHY_mode { DM9000_10MHD = 0, DM9000_100MHD =

1, DM9000_10MFD = 4, DM9000_100MFD = 5, DM9000_AUTO =

8, DM9000_1M_HPNA = 0x10

};

enum DM9000_NIC_TYPE { FASTETHER_NIC = 0, HOMERUN_NIC = 1, LONGRUN_NIC = 2

};

/* Structure/enum declaration ------------------------------- */

typedef struct board_info {

u32 runt_length_counter;    /* counter: RX length < 64byte */

u32 long_length_counter;    /* counter: RX length > 1514byte */

u32 reset_counter;  /* counter: RESET */

u32 reset_tx_timeout;   /* RESET caused by TX Timeout */

u32 reset_rx_status;    /* RESET caused by RX Statsus wrong */

u16 tx_pkt_cnt;

u16 queue_start_addr;

u16 dbug_cnt;

u8 phy_addr;

u8 device_wait_reset;   /* device state */

u8 nic_type;        /* NIC type */

unsigned char srom[128];

} board_info_t;

board_info_t dmfe_info;

/* For module input parameter */

static int media_mode = DM9000_AUTO;

static u8 nfloor = 0;

/* function declaration ------------------------------------- */

int eth_init(bd_t * bd);

int eth_send(volatile void *, int);

int eth_rx(void);

void eth_halt(void);

static int dm9000_probe(void);

static u16 phy_read(int);

static void phy_write(int, u16);

static u16 read_srom_word(int);

static u8 DM9000_ior(int);

static void DM9000_iow(int reg, u8 value);

/* DM9000 network board routine ---------------------------- */

#define DM9000_outb(d,r) ( *(volatile u8 *)r = d )

#define DM9000_outw(d,r) ( *(volatile u16 *)r = d )

#define DM9000_outl(d,r) ( *(volatile u32 *)r = d )

#define DM9000_inb(r) (*(volatile u8 *)r)

#define DM9000_inw(r) (*(volatile u16 *)r)

#define DM9000_inl(r) (*(volatile u32 *)r)

#ifdef CONFIG_DM9000_DEBUG

static void

dump_regs(void)

{

DM9000_DBG("\n");

DM9000_DBG("NCR   (0x00): %02x\n", DM9000_ior(0));

DM9000_DBG("NSR   (0x01): %02x\n", DM9000_ior(1));

DM9000_DBG("TCR   (0x02): %02x\n", DM9000_ior(2));

DM9000_DBG("TSRI  (0x03): %02x\n", DM9000_ior(3));

DM9000_DBG("TSRII (0x04): %02x\n", DM9000_ior(4));

DM9000_DBG("RCR   (0x05): %02x\n", DM9000_ior(5));

DM9000_DBG("RSR   (0x06): %02x\n", DM9000_ior(6));

DM9000_DBG("ISR   (0xFE): %02x\n", DM9000_ior(ISR));

DM9000_DBG("\n");

}

#endif                  /*  */

/*

Search DM9000 board, allocate space and register it

*/

int

dm9000_probe(void)

{

u32 id_val;

id_val = DM9000_ior(DM9000_VIDL);

id_val |= DM9000_ior(DM9000_VIDH) << 8;

id_val |= DM9000_ior(DM9000_PIDL) << 16;

id_val |= DM9000_ior(DM9000_PIDH) << 24;

if (id_val == DM9000_ID) {

printf("dm9000 i/o: 0x%x, id: 0x%x \n", CONFIG_DM9000_BASE,

id_val);

return 0;

} else {

printf("dm9000 not found at 0x%08x id: 0x%08x\n",

CONFIG_DM9000_BASE, id_val);

return -1;

}

}

/* Set PHY operationg mode

*/

static void

set_PHY_mode(void)

{

u16 phy_reg4 = 0x01e1, phy_reg0 = 0x1000;

if (!(media_mode & DM9000_AUTO)) {

switch (media_mode) {

case DM9000_10MHD:

phy_reg4 = 0x21;

phy_reg0 = 0x0000;

break;

case DM9000_10MFD:

phy_reg4 = 0x41;

phy_reg0 = 0x1100;

break;

case DM9000_100MHD:

phy_reg4 = 0x81;

phy_reg0 = 0x2000;

break;

case DM9000_100MFD:

phy_reg4 = 0x101;

phy_reg0 = 0x3100;

break;

}

phy_write(4, phy_reg4); /* Set PHY media mode */

phy_write(0, phy_reg0); /*  Tmp */

}

DM9000_iow(DM9000_GPCR, 0x01);  /* Let GPIO0 output */

DM9000_iow(DM9000_GPR, 0x00);   /* Enable PHY */

}

/*

Init HomeRun DM9801

*/

static void

program_dm9801(u16 HPNA_rev)

{

__u16 reg16, reg17, reg24, reg25;

if (!nfloor)

nfloor = DM9801_NOISE_FLOOR;

reg16 = phy_read(16);

reg17 = phy_read(17);

reg24 = phy_read(24);

reg25 = phy_read(25);

switch (HPNA_rev) {

case 0xb900:        /* DM9801 E3 */

reg16 |= 0x1000;

reg25 = ((reg24 + nfloor) & 0x00ff) | 0xf000;

break;

case 0xb901:        /* DM9801 E4 */

reg25 = ((reg24 + nfloor) & 0x00ff) | 0xc200;

reg17 = (reg17 & 0xfff0) + nfloor + 3;

break;

case 0xb902:        /* DM9801 E5 */

case 0xb903:        /* DM9801 E6 */

default:

reg16 |= 0x1000;

reg25 = ((reg24 + nfloor - 3) & 0x00ff) | 0xc200;

reg17 = (reg17 & 0xfff0) + nfloor;

}

phy_write(16, reg16);

phy_write(17, reg17);

phy_write(25, reg25);

}

/*

Init LongRun DM9802

*/

static void

program_dm9802(void)

{

__u16 reg25;

if (!nfloor)

nfloor = DM9802_NOISE_FLOOR;

reg25 = phy_read(25);

reg25 = (reg25 & 0xff00) + nfloor;

phy_write(25, reg25);

}

/* Identify NIC type

*/

static void

identify_nic(void)

{

struct board_info *db = &dmfe_info; /* Point a board information structure */

u16 phy_reg3;

DM9000_iow(DM9000_NCR, NCR_EXT_PHY);

phy_reg3 = phy_read(3);

switch (phy_reg3 & 0xfff0) {

case 0xb900:

if (phy_read(31) == 0x4404) {

db->nic_type = HOMERUN_NIC;

program_dm9801(phy_reg3);

DM9000_DBG("found homerun NIC\n");

} else {

db->nic_type = LONGRUN_NIC;

DM9000_DBG("found longrun NIC\n");

program_dm9802();

}

break;

default:

db->nic_type = FASTETHER_NIC;

break;

}

DM9000_iow(DM9000_NCR, 0);

}

/* General Purpose dm9000 reset routine */

static void

dm9000_reset(void)

{

DM9000_DBG("resetting\n");

DM9000_iow(DM9000_NCR, NCR_RST);

udelay(1000);       /* delay 1ms */

}

/* Initilize dm9000 board

*/

int

eth_init(bd_t * bd)

{

int i, oft, lnk;

DM9000_DBG("eth_init()\n");

/* RESET device */

dm9000_reset();

dm9000_probe();

/* NIC Type: FASTETHER, HOMERUN, LONGRUN */

identify_nic();

/* GPIO0 on pre-activate PHY */

DM9000_iow(DM9000_GPR, 0x00);   /*REG_1F bit0 activate phyxcer */

/* Set PHY */

set_PHY_mode();

/* Program operating register */

DM9000_iow(DM9000_NCR, 0x0);    /* only intern phy supported by now */

DM9000_iow(DM9000_TCR, 0);  /* TX Polling clear */

DM9000_iow(DM9000_BPTR, 0x3f);  /* Less 3Kb, 200us */

DM9000_iow(DM9000_FCTR, FCTR_HWOT(3) | FCTR_LWOT(8));   /* Flow Control : High/Low Water */

DM9000_iow(DM9000_FCR, 0x0);    /* SH FIXME: This looks strange! Flow Control */

DM9000_iow(DM9000_SMCR, 0); /* Special Mode */

DM9000_iow(DM9000_NSR, NSR_WAKEST | NSR_TX2END | NSR_TX1END);   /* clear TX status */

DM9000_iow(DM9000_ISR, 0x0f);   /* Clear interrupt status */

/* Set Node address */

//  for (i = 0; i < 6; i++) //raymanfeng-

//      ((u16 *) bd->bi_enetaddr)= read_srom_word(i);

printf("MAC: %02x:%02x:%02x:%02x:%02x:%02x\n", bd->bi_enetaddr[0],

bd->bi_enetaddr[1], bd->bi_enetaddr[2], bd->bi_enetaddr[3],

bd->bi_enetaddr[4], bd->bi_enetaddr[5]);

for (i = 0, oft = 0x10; i < 6; i++, oft++)

DM9000_iow(oft, bd->bi_enetaddr);

for (i = 0, oft = 0x16; i < 8; i++, oft++)

DM9000_iow(oft, 0xff);

/* read back mac, just to be sure */

for (i = 0, oft = 0x10; i < 6; i++, oft++)

DM9000_DBG("%02x:", DM9000_ior(oft));

DM9000_DBG("\n");

/* Activate DM9000 */

DM9000_iow(DM9000_RCR, RCR_DIS_LONG | RCR_DIS_CRC | RCR_RXEN);  /* RX enable */

DM9000_iow(DM9000_IMR, IMR_PAR);    /* Enable TX/RX interrupt mask */

/*  //raymanfeng-

i = 0;

while (!(phy_read(1) & 0x20)) { // autonegation complete bit

udelay(1000);

i++;

if (i == 10000) {

printf("could not establish link\n");

return 0;

}

}

// see what we've got

lnk = phy_read(17) >> 12;

printf("operating at ");

switch (lnk) {

case 1:

printf("10M half duplex ");

break;

case 2:

printf("10M full duplex ");

break;

case 4:

printf("100M half duplex ");

break;

case 8:

printf("100M full duplex ");

break;

default:

printf("unknown: %d ", lnk);

break;

}

printf("mode\n");

*/

return 0;

}

/*

Hardware start transmission.

Send a packet to media from the upper layer.

*/

int

eth_send(volatile void *packet, int length)

{

char *data_ptr;

u32 tmplen, i;

int tmo;

DM9000_DBG("eth_send: length: %d\n", length);

for (i = 0; i < length; i++) {

if (i % 8 == 0)

DM9000_DBG("\nSend: 02x: ", i);

DM9000_DBG("%02x ", ((unsigned char *) packet));

} DM9000_DBG("\n");

/* Move data to DM9000 TX RAM */

data_ptr = (char *) packet;

DM9000_outb(DM9000_MWCMD, DM9000_IO);

#ifdef CONFIG_DM9000_USE_8BIT

/* Byte mode */

for (i = 0; i < length; i++)

DM9000_outb((data_ptr& 0xff), DM9000_DATA);

#endif                  /*  */

#ifdef CONFIG_DM9000_USE_16BIT

tmplen = (length + 1) / 2;

for (i = 0; i < tmplen; i++)

DM9000_outw(((u16 *) data_ptr), DM9000_DATA);

#endif                  /*  */

#ifdef CONFIG_DM9000_USE_32BIT

tmplen = (length + 3) / 4;

for (i = 0; i < tmplen; i++)

DM9000_outl(((u32 *) data_ptr), DM9000_DATA);

#endif                  /*  */

/* Set TX length to DM9000 */

DM9000_iow(DM9000_TXPLL, length & 0xff);

DM9000_iow(DM9000_TXPLH, (length >> 8) & 0xff);

/* Issue TX polling command */

DM9000_iow(DM9000_TCR, TCR_TXREQ);  /* Cleared after TX complete */

/* wait for end of transmission */

tmo = get_timer(0) + 5 * CFG_HZ;

while (DM9000_ior(DM9000_TCR) & TCR_TXREQ) {

if (get_timer(0) >= tmo) {

printf("transmission timeout\n");

break;

}

}

DM9000_DBG("transmit done\n\n");

return 0;

}

/*

Stop the interface.

The interface is stopped when it is brought.

*/

void

eth_halt(void)

{

DM9000_DBG("eth_halt\n");

/* RESET devie */

phy_write(0, 0x8000);   /* PHY RESET */

DM9000_iow(DM9000_GPR, 0x01);   /* Power-Down PHY */

DM9000_iow(DM9000_IMR, 0x80);   /* Disable all interrupt */

DM9000_iow(DM9000_RCR, 0x00);   /* Disable RX */

}

/*

Received a packet and pass to upper layer

*/

int

eth_rx(void)

{

u8 rxbyte, *rdptr = (u8 *) NetRxPackets[0];

u16 RxStatus, RxLen = 0;

u32 tmplen, i;

#ifdef CONFIG_DM9000_USE_32BIT

u32 tmpdata;

#endif

/* Check packet ready or not */

DM9000_ior(DM9000_MRRH);    //raymanfeng+

DM9000_ior(DM9000_MRRL);    //raymanfeng+

DM9000_ior(DM9000_MRCMDX);  /* Dummy read */

rxbyte = DM9000_inb(DM9000_DATA);   /* Got most updated data */

if (rxbyte == 0)

return 0;

/* Status check: this byte must be 0 or 1 */

if (rxbyte > 1) {

DM9000_iow(DM9000_RCR, 0x00);   /* Stop Device */

DM9000_iow(DM9000_ISR, 0x80);   /* Stop INT request */

DM9000_DBG("rx status check: %d\n", rxbyte);

}

DM9000_DBG("receiving packet\n");

/* A packet ready now  & Get status/length */

DM9000_outb(DM9000_MRCMD, DM9000_IO);

#ifdef CONFIG_DM9000_USE_8BIT

RxStatus = DM9000_inb(DM9000_DATA) + (DM9000_inb(DM9000_DATA) << 8);

RxLen = DM9000_inb(DM9000_DATA) + (DM9000_inb(DM9000_DATA) << 8);

#endif                  /*  */

#ifdef CONFIG_DM9000_USE_16BIT

RxStatus = DM9000_inw(DM9000_DATA);

RxLen = DM9000_inw(DM9000_DATA);

#endif                  /*  */

#ifdef CONFIG_DM9000_USE_32BIT

tmpdata = DM9000_inl(DM9000_DATA);

RxStatus = tmpdata;

RxLen = tmpdata >> 16;

#endif                  /*  */

DM9000_DBG("rx status: 0x%04x rx len: %d\n", RxStatus, RxLen);

/* Move data from DM9000 */

/* Read received packet from RX SRAM */

#ifdef CONFIG_DM9000_USE_8BIT

for (i = 0; i < RxLen; i++)

rdptr= DM9000_inb(DM9000_DATA);

#endif                  /*  */

#ifdef CONFIG_DM9000_USE_16BIT

tmplen = (RxLen + 1) / 2;

for (i = 0; i < tmplen; i++)

((u16 *) rdptr)= DM9000_inw(DM9000_DATA);

#endif                  /*  */

#ifdef CONFIG_DM9000_USE_32BIT

tmplen = (RxLen + 3) / 4;

for (i = 0; i < tmplen; i++)

((u32 *) rdptr)= DM9000_inl(DM9000_DATA);

#endif                  /*  */

if ((RxStatus & 0xbf00) || (RxLen < 0x40)

|| (RxLen > DM9000_PKT_MAX)) {

if (RxStatus & 0x100) {

printf("rx fifo error\n");

}

if (RxStatus & 0x200) {

printf("rx crc error\n");

}

if (RxStatus & 0x8000) {

printf("rx length error\n");

}

if (RxLen > DM9000_PKT_MAX) {

printf("rx length too big\n");

dm9000_reset();

}

} else {

/* Pass to upper layer */

DM9000_DBG("passing packet to upper layer\n");

NetReceive(NetRxPackets[0], RxLen);

return RxLen;

}

return 0;

}

/*

Read a word data from SROM

*/

static u16

read_srom_word(int offset)

{

DM9000_iow(DM9000_EPAR, offset);

DM9000_iow(DM9000_EPCR, 0x4);

udelay(200);

DM9000_iow(DM9000_EPCR, 0x0);

return (DM9000_ior(DM9000_EPDRL) + (DM9000_ior(DM9000_EPDRH) << 8));

}

/*

Read a byte from I/O port

*/

static u8

DM9000_ior(int reg)

{

DM9000_outb(reg, DM9000_IO);

return DM9000_inb(DM9000_DATA);

}

/*

Write a byte to I/O port

*/

static void

DM9000_iow(int reg, u8 value)

{

DM9000_outb(reg, DM9000_IO);

DM9000_outb(value, DM9000_DATA);

}

/*

Read a word from phyxcer

*/

static u16

phy_read(int reg)

{

u16 val;

/* Fill the phyxcer register into REG_0C */

DM9000_iow(DM9000_EPAR, DM9000_PHY | reg);

DM9000_iow(DM9000_EPCR, 0xc);   /* Issue phyxcer read command */

udelay(100);        /* Wait read complete */

DM9000_iow(DM9000_EPCR, 0x0);   /* Clear phyxcer read command */

val = (DM9000_ior(DM9000_EPDRH) << 8) | DM9000_ior(DM9000_EPDRL);

/* The read data keeps on REG_0D & REG_0E */

DM9000_DBG("phy_read(%d): %d\n", reg, val);

return val;

}

/*

Write a word to phyxcer

*/

static void

phy_write(int reg, u16 value)

{

/* Fill the phyxcer register into REG_0C */

DM9000_iow(DM9000_EPAR, DM9000_PHY | reg);

/* Fill the written data into REG_0D & REG_0E */

DM9000_iow(DM9000_EPDRL, (value & 0xff));

DM9000_iow(DM9000_EPDRH, ((value >> 8) & 0xff));

DM9000_iow(DM9000_EPCR, 0xa);   /* Issue phyxcer write command */

udelay(500);        /* Wait write complete */

DM9000_iow(DM9000_EPCR, 0x0);   /* Clear phyxcer write command */

DM9000_DBG("phy_write(reg:%d, value:%d)\n", reg, value);

}

#endif              /* CONFIG_DRIVER_DM9000 */

邮箱:whw0701@126.com

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/560388.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

zigbee板子:lcd显示汉字

main函数 #include <ioCC2530.h> #include "LCD.h"void main() {//unsigned char i0; LCD_Init(); //oled 初始化 LCD_CLS(); //屏全亮 LCD_welcome();while(1){} } 首先呢。我们运行这个程序&#xff0c;然后可…

sharpssh远程linux监控系统,利用SharpSsh远程执行linux的shell命令

利用SharpSsh远程执行linux的shell命令 (2011-07-26 14:38:02)SharpSSH是一个C#的开源项目&#xff0c;可以利用SSH连接linux系统。并执行shell等命令。而SharpSSH提供的例子的输入输出都是定向到console。因此不容易从其中取出它的结果。因此需要对源码进行一定的修改&#xf…

matlab实时采集串口数据并分析串口数据传送格式

下位机 zigbee代码 最近在做基于zigbee的RSSI实时定位系统。这个系统需要我们实时的测量得到每一个位置的rssi值。首先&#xff0c;我需要研究怎么把这个rssi值通过串口传到我们的上位机上。 我们可以看到我们下位机&#xff0c;里面有一个传送数据包的一个东西&#xff0c;在…

linux编译两个整数相加,常考面试题之两个字符串相加(长整数相加)

无论你面试的是什么岗位&#xff0c;应该都或多或少看到过这个问题 - 两个长整数相加要怎么实现。如果a和b的位数不大&#xff0c;确实直接用类型转换就可以求出ab了&#xff0c;但是万一a和b的位数都是几百位呢&#xff0c;早就溢出了&#xff0c;这时候要怎么计算呢&#xff…

matlab guide 打开图像并将图像显示到界面

最近又用到matlab做GUI&#xff0c;之前学的全忘了&#xff0c;还好两年前留了大实验源码。 下面我来通过源码分析一下matlab怎么做GUI。这次我来分析如何通过matlab打开图像并将图像显示到界面。 实验效果 原理 打开菜单编辑器看这个属性&#xff1a; 找到回调 可以看到回调…

linux自动挂载usb打印机,Linux下使用Usbmount实现USB设备自动挂载

Usbmount 工具可以实现usb设备得自动加/卸载。$$ sudo apt-get install usbmountusbmount的配置文件为/etc/usbmount/usbmount.conf&#xff0c;通常需要修改得字段如下&#xff1a;FILESYSTEMS“ext2, ext3, vfat, ntfs”MOUNTOPTIONS“iocharsetgb2312,sync,noexec,nodev,noa…

matlab guide 将matlab处理过的图片保存

最近又用到matlab做GUI&#xff0c;之前学的全忘了&#xff0c;还好两年前留了大实验源码。 这次我来分析如何将matlab处理过的图片保存。 实验效果 经过灰度转换&#xff0c;图象被处理&#xff0c;并显示到另一个地方。 点击保存 图片被保存 实验原理 查看保存的回调函…

深圳linux测试题库,Linux认证考试题库及答案

Linux认证考试题库及答案1、一个文件的权限是-rw-rw-r--&#xff0c;这个文件所有者的权限是什么()a、read-onlyb、read-writec、write答案 b2、下面哪个值代表多用户启动()a、1b、0c、3d、5答案 c3、下面哪个文件代表系统初始化信息()a、/etc/inittabb、/etc/initc、/etc/proc…

matlab guide 打开excel并对其中数据进行处理

最近又用到matlab做GUI&#xff0c;之前学的全忘了&#xff0c;还好两年前留了大实验源码。 这次我来分析如何通过matlab处理excel数据 实验结果 对excel处理的效果&#xff1a; 实验原理 打开excel回调函数 function openexc_Callback(hObject, eventdata, handles) [fil…

linux 显示文件名写到txt,C++获取某个路径下所有文件的文件名,读写TXT文件到新的文件...

好久没写io操作了&#xff0c;手生了好多&#xff0c;最简单实用的C代码也push上来吧。环境&#xff1a;mac&#xff0c;xcode(注意mac环境下Windows的函数不能用)功能&#xff1a;打开一个文件目录&#xff0c;把所有文件名读取到一个TXT文件中#include #include #include #in…

生成超清分辨率视频,南洋理工开源Upscale-A-Video

大模型在生成高质量图像方面表现出色,但在生成视频任务中&#xff0c;经常会面临视频不连贯、图像模糊、掉帧等问题。 这主要是因为生成式抽样过程中的随机性,会在视频序列中引入无法预测的帧跳动。同时现有方法仅考虑了局部视频片段的时空一致性,无法保证整个长视频的整体连贯…

matlab 文件之间相互调用实例

效果&#xff1a; 找到按钮的回调 function pushbutton1_Callback(hObject, eventdata, handles) cd Deploy Nodes %square_random(100,100,0.03);%布置节点 GPS误差为0 %square_random(1000,300,0.2,30) %GPS误差为30m %C_random([1000,300,300,700],240,0.2); square_regul…

linux+虚拟机上的wdcp,linux虚拟主机服务器wdcp系统教程

满意答案eslct2017.01.29采纳率&#xff1a;47% 等级&#xff1a;9已帮助&#xff1a;1264人linux虚拟主机服务器wdcp系统教程在我们安装了网络服务管理系统wdcp后&#xff0c;可能会有不少疑问还有就是使用过程中出现的问题&#xff0c;下面为大家总结几点比较常见的&#…

matlab guide实现多级界面

matlab如何实现多级界面呢&#xff1f;也就是说&#xff0c;在一个界面点击某个地方&#xff0c;就弹出来另一个界面&#xff0c;在另一个界面还可以再进行操作。 实验结果 实验原理 首先建立两个gui&#xff0c;并且每个gui都进行如下设置&#xff1a; 然后我们找到test.f…

常见积分和导数的推导

导数&#xff1a; 1.yarcsinxyarcsinxyarcsinx的导数&#xff1a; yarcsin⁡x→xsin⁡y→1y′cos⁡y→y′1cos⁡y→y′11−x2\\y\arcsin x\\ \rightarrow x\sin y\\ \rightarrow 1{y}\cos y\\ \rightarrow {y}\frac{1}{\cos y}\\ \rightarrow {y}\frac{1}{\sqrt{1-x^{2}}}yarc…

c语言函数调用排序用插入法,C语言:编写查找和排序函数(二分查找,冒泡排序,选择排序法,插入排序)...

任务代码&#xff1a;二分查找数组的一个数字&#xff1a;(函数法)#include int binarySearch(int a[],int len,int key){int low0,highlen-1,mid;int i-1;//相当于indexwhile(low<high){mid(lowhigh)/2;if(a[mid]key){imid;break;}else if(key>a[mid]){lowmid1;}else{hi…

常用于解决放缩问题的基本不等式及其几何直观证明

考研中遇到放缩问题就需要用到不等式&#xff1a; 一般放缩的地方就是夹逼准则&#xff0c;还有判断多元函数极限是否存在。 基本不等式&#xff1a; (调和均值 ≤ 几何均值 ≤ 算术均值 ≤ 平方均值) 当且仅当ab时等号成立。 基本不等式的几何直观证明&#xff1a; 基本不…

c语言 连接哨兵 redis6,Redis哨兵--缓存服务器

redis哨兵说明:通过缓存服务器可以有效的提升用户的访问效1.注意事项:A:缓存的数据结构应该选用K-V结构,只要K唯一那么结果必然相同B:缓存总的数据不可能一直储存,需要定期将内存数据进行优化,LRU算法....C:缓存的运行数据要求要快,C语言实现... 运行在内存中D:如果缓存运行的数…

复数和复变指数函数和三角函数和欧拉公式关系及几何直观意义

证明欧拉公式 如果这么看自变量&#xff1a;θωt\theta \omega t θωt那么就可以发现欧拉公式的几何意义。 复数的表示形式 通过下面对比可以发现&#xff0c;用复指数表示复数在几何上更直观。 复数的运算 1.加法运算 设z1abi&#xff0c;z2cdi是任意两个复数&#xf…

利用DHT22和Arduino测量温湿度并显示在串口和OLED显示屏上

实验结果 温湿度显示在串口&#xff1a; 温湿度显示在OLED屏幕&#xff1a; 实验代码 #include "U8glib.h" #include "DHT.h"U8GLIB_SSD1306_128X32 u8g(U8G_I2C_OPT_NONE); #define DHTTYPE DHT22 // DHT 22 (AM2302) #define DHTPIN 2 // wh…