diff -u --recursive uisp-1.0b/src/Avr.h uisp-1.0b-new/src/Avr.h --- uisp-1.0b/src/Avr.h Tue Aug 29 10:08:28 2000 +++ uisp-1.0b-new/src/Avr.h Thu Nov 29 18:55:33 2001 @@ -16,8 +16,7 @@ #define AVR_VOLTAGE_SPRANGE (5.0 - 3.2) /* V */ class TAvr: public TDevice{ -private: - +public: /* The following structure describes the FUSE segment. The fuse_desc[bit_number] can be either: STRING NAME like "CLK0" etc. @@ -37,6 +36,7 @@ char* fuse_desc_wr [8]; }; +private: /* AVR Family Device List */ struct TPart { @@ -84,7 +84,7 @@ TByte part_number; void Identify(); - inline const char* GetPartName(); + const char* GetPartName(); void CheckMemoryRange(TAddr addr); long Get_t_wd_flash() const; long Get_t_wd_eeprom() const; Only in uisp-1.0b-new/src: Avr.o Only in uisp-1.0b-new/src: AvrAtmel.o Only in uisp-1.0b-new/src: AvrDummy.o diff -u --recursive uisp-1.0b/src/DAPA.C uisp-1.0b-new/src/DAPA.C --- uisp-1.0b/src/DAPA.C Tue Aug 29 10:08:28 2000 +++ uisp-1.0b-new/src/DAPA.C Thu Nov 29 18:52:51 2001 @@ -40,6 +40,8 @@ #ifdef DIRTYHACK #define __KERNEL__ #endif +typedef int wait_queue_head_t; +struct semaphore {int dummy; }; #include #ifdef DIRTYHACK #undef __KERNEL__ Only in uisp-1.0b-new/src: DAPA.o diff -u --recursive uisp-1.0b/src/Global.h uisp-1.0b-new/src/Global.h --- uisp-1.0b/src/Global.h Tue Aug 29 10:08:28 2000 +++ uisp-1.0b-new/src/Global.h Thu Nov 29 18:49:27 2001 @@ -89,7 +89,7 @@ TDevice():CRef(0){} virtual ~TDevice(){} - friend TPt; + friend class TPt; }; typedef TPt PDevice; Only in uisp-1.0b-new/src: Main.o Only in uisp-1.0b-new/src: MotIntl.o Only in uisp-1.0b-new/src: Serial.o diff -u --recursive uisp-1.0b/src/Terminal.C uisp-1.0b-new/src/Terminal.C --- uisp-1.0b/src/Terminal.C Tue Aug 29 10:08:28 2000 +++ uisp-1.0b-new/src/Terminal.C Thu Nov 29 18:46:35 2001 @@ -7,6 +7,7 @@ #include #include +#include #include "Global.h" #include "Error.h" #include "Terminal.h" Only in uisp-1.0b-new/src: Terminal.o Only in uisp-1.0b-new/src: uisp